Skip to content

Commit

Permalink
Force override ZIP files from artifacts
Browse files Browse the repository at this point in the history
This can happen when for multiple python versions tests fail only on some
When rerunning only these failing tests it leads to these files already existing and it waits for confirmation to override these files
So we force this override so that this action doesn't fail
  • Loading branch information
johannaengland committed Sep 18, 2024
1 parent 2d9827d commit 70e2522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-test-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
do
IFS=$'\t' read name url <<< "$artifact"
gh api $url > "$name.zip"
unzip -d "$name" "$name.zip"
unzip -o -d "$name" "$name.zip"
done
- name: "Publish test results"
Expand Down

0 comments on commit 70e2522

Please sign in to comment.