Skip to content

Commit

Permalink
safer way to remove old artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin authored and akokoshn committed Nov 2, 2024
1 parent 5a39c0a commit 9012814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-proof-producer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ jobs:
echo "artifact-dir=$(realpath ${{ github.workspace }}/../artifacts)"
- name: Cleanup artifacts after previous runs
working-directory: ${{ steps.strings.outputs.artifact-dir }}
continue-on-error: true
run: |
rm -rf *
rm -rf -i -v ${{ steps.strings.outputs.artifact-dir }}
- name: Download circuits and assignments artifact
uses: dawidd6/action-download-artifact@v3
Expand Down

0 comments on commit 9012814

Please sign in to comment.