Skip to content

Commit

Permalink
ci: use different names for coverage artifact data
Browse files Browse the repository at this point in the history
  • Loading branch information
ericswpark committed Dec 14, 2023
1 parent aaeb115 commit 38ab0ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/server-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ github.run_id }}-${{ github.run_attempt }}
path: ${{ github.workspace }}/server/.coverage.*

codecov-coverage:
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Download coverage reports from all runners
uses: actions/download-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ github.run_id }}-${{ github.run_attempt }}
- name: Combine coverage reports and generate Cobertura XML report
run: |
coverage combine
Expand Down

0 comments on commit 38ab0ff

Please sign in to comment.