Skip to content

Commit

Permalink
Merge pull request #8 from joehoyle/cache-target
Browse files Browse the repository at this point in the history
Cache Target Dir
  • Loading branch information
joehoyle authored Apr 18, 2023
2 parents def114b + 77b0fd7 commit 1d16d32
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,19 @@ jobs:
uses: docker/setup-qemu-action@v2

- name: Cache Cargo
id: cache-primes
id: cache-cargo
uses: actions/cache@v3
with:
path: ~/.cargo
key: "v1"

- name: Cache Traget
id: cache-target
uses: actions/cache@v3
with:
path: target
key: "${{ matrix.target }}"

- name: Setup docker
uses: docker/build-push-action@v2
with:
Expand Down

0 comments on commit 1d16d32

Please sign in to comment.