Skip to content

Commit 1d16d32

Browse files
authored
Merge pull request #8 from joehoyle/cache-target
Cache Target Dir
2 parents def114b + 77b0fd7 commit 1d16d32

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,19 @@ jobs:
4545
uses: docker/setup-qemu-action@v2
4646

4747
- name: Cache Cargo
48-
id: cache-primes
48+
id: cache-cargo
4949
uses: actions/cache@v3
5050
with:
5151
path: ~/.cargo
5252
key: "v1"
5353

54+
- name: Cache Traget
55+
id: cache-target
56+
uses: actions/cache@v3
57+
with:
58+
path: target
59+
key: "${{ matrix.target }}"
60+
5461
- name: Setup docker
5562
uses: docker/build-push-action@v2
5663
with:

0 commit comments

Comments
 (0)