Skip to content

Commit

Permalink
Use || true instead of continue-on-error
Browse files Browse the repository at this point in the history
  • Loading branch information
furushchev committed Feb 11, 2025
1 parent 5df3e31 commit f6313cd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,7 @@ jobs:

- name: Delete old ccache
if: always() && steps.restore-ccache.outputs.cache-hit
continue-on-error: true
run: gh cache delete "${{ steps.restore-ccache.outputs.cache-primary-key }}"
run: gh cache delete "${{ steps.restore-ccache.outputs.cache-primary-key }}" || true
env:
GH_TOKEN: ${{ github.token }}
- name: Store ccache
Expand Down

0 comments on commit f6313cd

Please sign in to comment.