Skip to content

Commit

Permalink
Merge pull request #3731 from scottwittenburg/ci-workaround-cacheacti…
Browse files Browse the repository at this point in the history
…on-bug

ci: work around bug in actions/cache
  • Loading branch information
scottwittenburg authored Aug 1, 2023
2 parents 2a9503c + 3af372c commit 07b7cee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
run: ccache -s
- name: Save cache
uses: actions/cache/save@v3
if: ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit == 'false' }}
if: ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit != 'true' }}
id: save-cache
with:
path: .ccache
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
run: ccache -s
- name: Save cache
uses: actions/cache/save@v3
if: ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit == 'false' }}
if: ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit != 'true' }}
id: save-cache
with:
path: .ccache
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
run: ccache -s
- name: Save cache
uses: actions/cache/save@v3
if: ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit == 'false' }}
if: ${{ github.ref_name == 'master' && steps.restore-cache.outputs.cache-hit != 'true' }}
id: save-cache
with:
path: .ccache
Expand Down

0 comments on commit 07b7cee

Please sign in to comment.