Skip to content

Commit

Permalink
Fix if condition for trace upload
Browse files Browse the repository at this point in the history
  • Loading branch information
p-offtermatt committed Dec 11, 2023
1 parent e039ef9 commit b13ead1
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 b13ead1

Please sign in to comment.