Skip to content

Commit

Permalink
fix unique artifact names to use matrix identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesw committed Nov 19, 2024
1 parent b703d26 commit 4c59019
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cypress new ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
cypress/e2e/retention/ui-homepage.cy.js
cypress/e2e/retention/ui-homepage-edit.cy.js
cypress/e2e/retention/ui-reports.cy.js
# keep running jobs even if one test fails in case there are multiple failed tests
fail-fast: false

###################################################################################################
Expand Down Expand Up @@ -87,13 +88,15 @@ jobs:
- uses: actions/upload-artifact@v4
if: failure()
with:
name: "cypress-screenshots-${{ github.job }}"
name: "cypress-screenshots-${{ matrix.name }}"
path: ui/cypress/screenshots
if-no-files-found: ignore

- uses: actions/upload-artifact@v4
if: failure()
with:
name: "cypress-videos-${{ github.job }}"
name: "cypress-videos-${{ matrix.name }}"
path: ui/cypress/videos
if-no-files-found: ignore


0 comments on commit 4c59019

Please sign in to comment.