Skip to content

Commit

Permalink
chore: Distinct names for E2E artifacts
Browse files Browse the repository at this point in the history
`actions/upload-artifact@v4` does not allow multiple artifacts with the same name which causes upload failures in case of multiple E2E suites failing
  • Loading branch information
StaNov committed Jan 23, 2025
1 parent e501446 commit 80e2efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ jobs:
- uses: actions/upload-artifact@v4
if: failure()
with:
name: e2e
name: e2e_${{ matrix.job_index }}
path: |
./e2e/cypress/videos/**/*
./e2e/cypress/screenshots/**/*
Expand Down

0 comments on commit 80e2efa

Please sign in to comment.