From e52d1864c58e332e1cf32062bb67240470996591 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 12:51:03 +0100 Subject: [PATCH] Fix condition for trace archival --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8300dfa5f8..be14486b41 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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