Skip to content

Commit

Permalink
fix confilicting name of artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryRomanov committed Feb 3, 2025
1 parent 1a97fd3 commit 097871b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-test-${{ matrix.flags || 'default' }}
path: |
profile.out
profile_race.out
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-test-${{ matrix.flags || 'default' }}
path: |
profile_e2e.out
profile_e2e_race.out
Expand All @@ -99,12 +99,18 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: coverage
path: artifacts
pattern: coverage-*
merge-multiple: true

- name: Send coverage
uses: codecov/codecov-action@v3
with:
files: profile.out, profile_race.out, profile_e2e.out, profile_e2e_race.out,
files: |
artifacts/profile.out
artifacts/profile_race.out
artifacts/profile_e2e.out
artifacts/profile_e2e_race.out
lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 097871b

Please sign in to comment.