Skip to content

Commit

Permalink
fix parallle upload artifact breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuhiroki committed Apr 6, 2024
1 parent ce907de commit 04ec39f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: Upload
uses: actions/upload-artifact@master
with:
name: out
name: out-${{ matrix.node }}
path: out
- name: Download
uses: actions/download-artifact@master
with:
name: out
name: out-${{ matrix.node }}
- name: Print
run: |
ls out
Expand All @@ -36,7 +36,8 @@ jobs:
uses: actions/download-artifact@master
with:
name: out
path: out
pattern: out-*
merge-multiple: true
- name: Print
run: |
ls
Expand Down

0 comments on commit 04ec39f

Please sign in to comment.