We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7fce37 commit ae16f33Copy full SHA for ae16f33
1 file changed
.github/workflows/wheels.yml
@@ -64,20 +64,26 @@ jobs:
64
65
merge-artifacts:
66
name: Download and create one artifact from all jobs
67
- needs: wheel
+ needs:
68
+ - sdist
69
+ - wheel
70
runs-on: ubuntu-20.04
71
steps:
- - name: Download Artifacts
72
+ - name: Download sdist artifact
73
uses: actions/download-artifact@v4
74
with:
- path: wheelhouse
75
+ path: dist
76
+ name: sdist
77
+
78
+ - name: Download wheel artifacts
79
+ uses: actions/download-artifact@v4
80
+ with:
81
82
pattern: wheels-*
83
merge-multiple: true
84
- - run: ls -l wheelhouse
-
85
- uses: actions/upload-artifact@v4
86
- name: wheels
- path: wheelhouse/*.whl
87
+ name: dist
88
89
if-no-files-found: error
0 commit comments