Skip to content

Commit

Permalink
Fix build cache not saving after build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jshbrntt committed Aug 8, 2023
1 parent 60bd56e commit 6e5b89f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ jobs:
uses: actions/cache@v3
with:
path: build/${{ matrix.target }}
key: build-${{ matrix.target }}
key: build-${{ matrix.target }}-${{ needs.release.outputs.commit_sha }}
restore-keys: |
build-${{ matrix.target }}-
- name: Build ${{ matrix.target }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 6e5b89f

Please sign in to comment.