Skip to content

Commit

Permalink
Make artifact names unique for v4 of action
Browse files Browse the repository at this point in the history
  • Loading branch information
dalito committed Mar 19, 2024
1 parent 5c778f4 commit 0beec52
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}
path: .coverage.*

coverage:
Expand All @@ -67,9 +67,10 @@ jobs:
run: python -m pip install --upgrade coverage[toml]

- name: Download data
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true

- name: Combine coverage, create reports and fail if less than threshold.
run: |
Expand Down

0 comments on commit 0beec52

Please sign in to comment.