From 1e64fa4f7c1bf02660224c61b74de85933d978d8 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 25 May 2023 13:18:57 -0700 Subject: [PATCH] chore: no empty dash suffix in blob report (#23285) --- .github/workflows/tests_secondary.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests_secondary.yml b/.github/workflows/tests_secondary.yml index 75d4d0ebca..1fa3214680 100644 --- a/.github/workflows/tests_secondary.yml +++ b/.github/workflows/tests_secondary.yml @@ -204,7 +204,7 @@ jobs: PWTEST_TRACE: 1 PWTEST_CHANNEL: ${{ matrix.channel }} PWTEST_BLOB_REPORT: 1 - PWTEST_BLOB_SUFFIX: "-${{ matrix.channel }}" + PWTEST_BLOB_SUFFIX: ${{ (matrix.channel && format('-{0}', matrix.channel)) || '' }} - run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json if: always() shell: bash