File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ jobs:
117
117
- uses : actions/upload-artifact@v4
118
118
if : (!matrix.use_qemu) || fromJSON(env.USE_QEMU)
119
119
with :
120
+ name : Wheel-${{ matrix.os }}-${{ matrix.build }}${{ matrix.arch }}
120
121
path : ./wheelhouse/*.whl
121
122
122
123
build_manylinux2010_wheels :
@@ -145,6 +146,7 @@ jobs:
145
146
146
147
- uses : actions/upload-artifact@v4
147
148
with :
149
+ name : Wheel-manylinux2010-${{ matrix.arch }}
148
150
path : ./wheelhouse/*.whl
149
151
150
152
build_sdist :
@@ -161,6 +163,7 @@ jobs:
161
163
162
164
- uses : actions/upload-artifact@v4
163
165
with :
166
+ name : SDist
164
167
path : dist/*.tar.gz
165
168
166
169
test_sdist :
@@ -199,7 +202,7 @@ jobs:
199
202
200
203
- uses : actions/download-artifact@v4
201
204
with :
202
- name : artifact
205
+ name : SDist
203
206
path : dist
204
207
205
208
- name : Install SDist
@@ -219,10 +222,9 @@ jobs:
219
222
steps :
220
223
- uses : actions/download-artifact@v4
221
224
with :
222
- name : artifact
223
- path : dist
225
+ path : all
224
226
225
- - run : pipx run twine check --strict dist /*
227
+ - run : pipx run twine check --strict all/* /*
226
228
227
229
upload_pypi :
228
230
name : Upload to PyPI
@@ -237,7 +239,11 @@ jobs:
237
239
steps :
238
240
- uses : actions/download-artifact@v4
239
241
with :
240
- name : artifact
241
- path : dist
242
+ path : all
243
+
244
+ - name : Merge files
245
+ run : |
246
+ mkdir dist
247
+ mv all/*/* dist/.
242
248
243
249
- uses : pypa/gh-action-pypi-publish@release/v1
You can’t perform that action at this time.
0 commit comments