Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Sep 4, 2024
1 parent f33497c commit 466fa60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
${{ runner.os }}-
- name: Create backup
if: steps.cache.outputs.cache-hit == 'true'
if: steps.cache.outputs.cache-matched-key == 'true'
run: |
cd cache
ls -l
Expand All @@ -68,13 +68,13 @@ jobs:
ETHERSCAN_API_KEY_GNOSIS: ${{ secrets.ETHERSCAN_API_KEY_GNOSIS }}

- name: diff
if: steps.cache.outputs.cache-hit == 'true'
if: steps.cache.outputs.cache-matched-key == 'true'
run: |
git diff --no-index --diff-algorithm=patience --ignore-space-at-eol cache/errors.backup.json cache/errors.json || :
git diff --no-index --diff-algorithm=patience --ignore-space-at-eol cache/verify.backup.json cache/verify.json || :
- name: Remove backup
if: steps.cache.outputs.cache-hit == 'true'
if: steps.cache.outputs.cache-matched-key == 'true'
run: |
rm cache/errors.backup.json || :
rm cache/verify.backup.json || :
Expand Down

0 comments on commit 466fa60

Please sign in to comment.