Skip to content

Commit

Permalink
Fix condition for trace archival
Browse files Browse the repository at this point in the history
  • Loading branch information
p-offtermatt committed Dec 11, 2023
1 parent a3df827 commit e52d186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
path: ./mbt-profile.out
- name: Archive MBT traces
uses: actions/upload-artifact@v3
if: success() | failure() # to upload the traces only when the test failed
if: ${{ success() | failure() }} # to upload the traces only when the test failed
with:
name: mbt-traces
path: tests/mbt/driver/traces
Expand Down

0 comments on commit e52d186

Please sign in to comment.