Skip to content

Commit

Permalink
Fix artifact handling in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee committed Mar 28, 2024
1 parent 4506178 commit 0c1430a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
- name: "Upload coverage data files"
uses: "actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3" # v4.3.1
with:
name: "coverage-data-files"
name: "coverage-data-files-${{ matrix.os.id }}"
path: ".coverage.*"
retention-days: 1

Expand Down Expand Up @@ -190,7 +190,9 @@ jobs:
- name: "Download coverage data files"
uses: "actions/download-artifact@87c55149d96e628cc2ef7e6fc2aab372015aec85" # v4.1.3
with:
name: "coverage-data-files"
pattern: "coverage-data-files-*"
path: "coverage-data-files"
merge-multiple: true

- name: "Calculate coverage"
run: |
Expand Down

0 comments on commit 0c1430a

Please sign in to comment.