Skip to content

Commit

Permalink
⚒️ Use pattern and merge-multiple input in download-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
keunhyung-chung committed Dec 22, 2023
1 parent aa66d91 commit 99f1739
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ jobs:
- name: Store coverage file
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-${{ matrix.python_version }}
path: .coverage.${{ matrix.python_version }}

coverage:
Expand All @@ -270,7 +270,8 @@ jobs:
- uses: actions/download-artifact@v4
id: download
with:
name: "coverage"
pattern: coverage-*
merge-multiple: true

- name: Coverage comment
id: coverage_comment
Expand Down

0 comments on commit 99f1739

Please sign in to comment.