Skip to content

Commit

Permalink
fix: Update regular expression and artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
prcr committed Dec 20, 2023
1 parent 463a7db commit e420c3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: coverage.${{ matrix.python-version }}
name: coverage-${{ matrix.python-version }}
path: .coverage.${{ matrix.python-version }}
retention-days: 3

Expand All @@ -66,7 +66,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: coverage
pattern: coverage.*
pattern: coverage-*
merge-multiple: true

- name: Combine coverage data
Expand All @@ -87,7 +87,7 @@ jobs:
- name: Upload XML coverage report artifact
uses: actions/upload-artifact@v4
with:
name: coverage.xml
name: coverage-xml
path: coverage.xml
retention-days: 3

Expand Down

0 comments on commit e420c3a

Please sign in to comment.