Skip to content

Commit 642f190

Browse files
committed
Fixed an issue where wheels would be downloaded with one subdir per wheel
Signed-off-by: Eric Reinecke <[email protected]>
1 parent fe9f406 commit 642f190

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,18 @@ jobs:
1717
# happen for this actual commit (the commit that the tag points to).
1818
# It also restores the files timestamps.
1919
- name: Download wheels from commit ${{ github.sha }}
20-
uses: dawidd6/action-download-artifact@v8
20+
uses: dawidd6/action-download-artifact@v11
2121
with:
2222
workflow: python-package.yml
2323
workflow_conclusion: success
2424
commit: ${{ github.sha }}
2525
name_is_regexp: true
2626
name: 'wheel-.*'
2727
path: dist
28+
merge_multiple: true
2829

2930
- name: Download sdist from commit ${{ github.sha }}
30-
uses: dawidd6/action-download-artifact@v8
31+
uses: dawidd6/action-download-artifact@v11
3132
with:
3233
workflow: python-package.yml
3334
workflow_conclusion: success

0 commit comments

Comments
 (0)