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