Skip to content

Commit ae16f33

Browse files
committed
Merge sdist artifact with wheel artifacts
1 parent e7fce37 commit ae16f33

1 file changed

Lines changed: 13 additions & 7 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,26 @@ jobs:
6464

6565
merge-artifacts:
6666
name: Download and create one artifact from all jobs
67-
needs: wheel
67+
needs:
68+
- sdist
69+
- wheel
6870
runs-on: ubuntu-20.04
6971
steps:
70-
- name: Download Artifacts
72+
- name: Download sdist artifact
7173
uses: actions/download-artifact@v4
7274
with:
73-
path: wheelhouse
75+
path: dist
76+
name: sdist
77+
78+
- name: Download wheel artifacts
79+
uses: actions/download-artifact@v4
80+
with:
81+
path: dist
7482
pattern: wheels-*
7583
merge-multiple: true
7684

77-
- run: ls -l wheelhouse
78-
7985
- uses: actions/upload-artifact@v4
8086
with:
81-
name: wheels
82-
path: wheelhouse/*.whl
87+
name: dist
88+
path: dist
8389
if-no-files-found: error

0 commit comments

Comments
 (0)