From 323fc2011b70071a2adfecc4176a8fdb61849268 Mon Sep 17 00:00:00 2001 From: Lin Wang Date: Thu, 12 Sep 2024 15:22:40 +0800 Subject: [PATCH] Fix duplicate test cypress result name Signed-off-by: Lin Wang --- .github/workflows/release-e2e-workflow-template.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-e2e-workflow-template.yml b/.github/workflows/release-e2e-workflow-template.yml index 39ba7d795..8b7104b46 100644 --- a/.github/workflows/release-e2e-workflow-template.yml +++ b/.github/workflows/release-e2e-workflow-template.yml @@ -135,17 +135,17 @@ jobs: - uses: actions/upload-artifact@v4 if: failure() with: - name: cypress-screenshots + name: cypress-screenshots${{ inputs.test-name }} path: cypress-test/cypress/screenshots # Test run video was always captured, so this action uses "always()" condition - uses: actions/upload-artifact@v4 if: always() with: - name: cypress-videos + name: cypress-videos${{ inputs.test-name }} path: cypress-test/cypress/videos # Test reports was always captured, so this action uses "always()" condition - uses: actions/upload-artifact@v4 if: always() with: - name: cypress-results + name: cypress-results${{ inputs.test-name }} path: cypress-test/cypress/results