Skip to content

Commit

Permalink
feat: use dawidd6 action download
Browse files Browse the repository at this point in the history
Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com>
  • Loading branch information
gfanton committed Oct 3, 2023
1 parent cb2ee4a commit 139b3bc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/codecov-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,28 @@ jobs:
- run: mkdir -p ${{ runner.temp }}/coverage

- name: Download coverage artifact from gnoland
uses: actions/download-artifact@v3
uses: dawidd6/action-download-artifact@v2
with:
workflow: gnoland.yml
name: coverage-gnoland
path: ${{ runner.temp }}/coverage/gnoland
if_no_artifact_found: ignore

- name: Download coverage artifact from gnovm
uses: actions/download-artifact@v3
uses: dawidd6/action-download-artifact@v2
with:
workflow: gnovm.yml
name: coverage-gnovm
path: ${{ runner.temp }}/coverage/gnovm
if_no_artifact_found: ignore

- name: Download coverage artifact from tm2
uses: actions/download-artifact@v3
uses: dawidd6/action-download-artifact@v2
with:
workflow: tm2.yml
name: coverage-tm2
path: ${{ runner.temp }}/coverage/tm2
if_no_artifact_found: ignore

- name: Upload combined coverage to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 139b3bc

Please sign in to comment.