Skip to content

Commit b934085

Browse files
committed
Merge sdist artifact with wheel artifacts
1 parent 3f4750f commit b934085

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
@@ -62,20 +62,26 @@ jobs:
6262

6363
merge-artifacts:
6464
name: Download and create one artifact from all jobs
65-
needs: wheel
65+
needs:
66+
- sdist
67+
- wheel
6668
runs-on: ubuntu-20.04
6769
steps:
68-
- name: Download Artifacts
70+
- name: Download sdist artifact
6971
uses: actions/download-artifact@v4
7072
with:
71-
path: wheelhouse
73+
path: dist
74+
name: sdist
75+
76+
- name: Download wheel artifacts
77+
uses: actions/download-artifact@v4
78+
with:
79+
path: dist
7280
pattern: wheels-*
7381
merge-multiple: true
7482

75-
- run: ls -l wheelhouse
76-
7783
- uses: actions/upload-artifact@v4
7884
with:
79-
name: wheels
80-
path: wheelhouse/*.whl
85+
name: dist
86+
path: dist
8187
if-no-files-found: error

0 commit comments

Comments
 (0)