Skip to content

Commit

Permalink
Fix duplicate test cypress result name
Browse files Browse the repository at this point in the history
Signed-off-by: Lin Wang <[email protected]>
  • Loading branch information
wanglam committed Sep 12, 2024
1 parent e6a8701 commit 323fc20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-e2e-workflow-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 323fc20

Please sign in to comment.