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