From 5c1ff4f918282f1a5bad9184fb2ab688d273e7b4 Mon Sep 17 00:00:00 2001 From: Andrew Newton Date: Thu, 9 Jan 2025 12:36:22 +0000 Subject: [PATCH] fix: ensure allure asset name is unique per suite being run to avoid dupe artefact names --- .github/workflows/e2etest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2etest.yaml b/.github/workflows/e2etest.yaml index 3f7e93012..2fb692def 100644 --- a/.github/workflows/e2etest.yaml +++ b/.github/workflows/e2etest.yaml @@ -214,7 +214,7 @@ jobs: - name: Store Allure Results uses: actions/upload-artifact@v4 with: - name: allure-results-${{ inputs.platform_env }} + name: allure-results-${{ inputs.platform_env }}-${{ contains(inputs.cucumber_tags, 'ss_') && 'selfserve' || contains(inputs.cucumber_tags, 'int_') && 'internal' || 'default' }} path: ./upload/${{ env.FOLDER_NAME }}/allure-results