Skip to content

Commit 54f1ce4

Browse files
committed
Ensure all artifacts have a unique name by appending Node version to each
1 parent 2e92ee7 commit 54f1ce4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
uses: actions/upload-artifact@v4
105105
if: matrix.node-version == '18.x'
106106
with:
107-
name: dspace-angular coverage report
107+
name: coverage-report-${{ matrix.node-version }}
108108
path: 'coverage/dspace-angular/lcov.info'
109109
retention-days: 14
110110

@@ -138,7 +138,7 @@ jobs:
138138
uses: actions/upload-artifact@v4
139139
if: always()
140140
with:
141-
name: e2e-test-videos
141+
name: e2e-test-videos-${{ matrix.node-version }}
142142
path: cypress/videos
143143

144144
# If e2e tests fail, Cypress creates a screenshot of what happened
@@ -147,7 +147,7 @@ jobs:
147147
uses: actions/upload-artifact@v4
148148
if: failure()
149149
with:
150-
name: e2e-test-screenshots
150+
name: e2e-test-screenshots-${{ matrix.node-version }}
151151
path: cypress/screenshots
152152

153153
- name: Stop app (in case it stays up after e2e tests)

0 commit comments

Comments
 (0)