Skip to content

Commit

Permalink
Use dedicated artifact names for uploads inside matrix
Browse files Browse the repository at this point in the history
The new version of upload-artifacts doesn't allow to use the same artifact name.
  • Loading branch information
bjoernricks committed Dec 19, 2023
1 parent 6eb81c8 commit e6b8352
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Load Lint Results
uses: actions/download-artifact@v4
with:
name: linting-report
name: linting-report-${{ matrix.node-version }}
path: ${{ env.REPORT_DIR }}
- name: Submit test coverage to codecov.io
uses: codecov/codecov-action@v3
Expand Down Expand Up @@ -89,5 +89,5 @@ jobs:
- name: Store Lint Results
uses: actions/upload-artifact@v4
with:
name: linting-report
name: linting-report-${{ matrix.node-version }}
path: ${{ env.REPORT_FILE }}

0 comments on commit e6b8352

Please # to comment.