Skip to content

Commit

Permalink
Improve if condition for storing cache
Browse files Browse the repository at this point in the history
  • Loading branch information
lubkoll committed Aug 26, 2024
1 parent 08c009f commit b488a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/all_checks_osmosis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
PROPTEST_CASES: 10
working-directory: smart-contracts/osmosis/contracts/cl-vault
- name: Store dependencies
if: ${{ (inputs.store_deps == 'true') && (steps.restore-cache.outputs.cache-hit == 'false') }}$
if: inputs.store_deps && !(steps.restore-cache.outputs.cache-hit == 'false')
uses: actions/cache/save@v4
with:
path: |
Expand Down

0 comments on commit b488a47

Please sign in to comment.