39
39
uses : actions/upload-artifact@v4
40
40
with :
41
41
name : sdist
42
+ if-no-files-found : error
42
43
path : dist
43
44
44
45
macos-x86_64 :
62
63
uses : actions/upload-artifact@v4
63
64
with :
64
65
name : wheel-macos-x86_64
66
+ if-no-files-found : error
65
67
path : dist
66
68
67
69
macos-universal :
84
86
uses : actions/upload-artifact@v4
85
87
with :
86
88
name : wheel-macos-universal
89
+ if-no-files-found : error
87
90
path : dist
88
91
89
92
windows :
@@ -111,6 +114,7 @@ jobs:
111
114
uses : actions/upload-artifact@v4
112
115
with :
113
116
name : wheel-windows-${{ matrix.target }}
117
+ if-no-files-found : error
114
118
path : dist
115
119
116
120
linux :
@@ -138,6 +142,7 @@ jobs:
138
142
uses : actions/upload-artifact@v4
139
143
with :
140
144
name : wheel-linux-${{ matrix.target }}
145
+ if-no-files-found : error
141
146
path : dist
142
147
143
148
linux-cross :
@@ -172,6 +177,7 @@ jobs:
172
177
uses : actions/upload-artifact@v4
173
178
with :
174
179
name : wheel-linux-cross-${{ matrix.target }}
180
+ if-no-files-found : error
175
181
path : dist
176
182
177
183
musllinux :
@@ -204,6 +210,7 @@ jobs:
204
210
uses : actions/upload-artifact@v4
205
211
with :
206
212
name : wheel-musllinux-${{ matrix.target }}
213
+ if-no-files-found : error
207
214
path : dist
208
215
209
216
musllinux-cross :
@@ -240,6 +247,7 @@ jobs:
240
247
uses : actions/upload-artifact@v4
241
248
with :
242
249
name : wheel-musllinux-cross-${{ matrix.platform.target }}-${{ matrix.platform.arch }}
250
+ if-no-files-found : error
243
251
path : dist
244
252
245
253
pypy :
@@ -275,6 +283,7 @@ jobs:
275
283
uses : actions/upload-artifact@v4
276
284
with :
277
285
name : wheel-pypy-${{ matrix.os }}-${{ matrix.target }}-${{ matrix.python-version }}
286
+ if-no-files-found : error
278
287
path : dist
279
288
280
289
pyodide :
@@ -300,7 +309,8 @@ jobs:
300
309
uses : actions/upload-artifact@v4
301
310
with :
302
311
name : wheel-pyodide
303
- path : dist
312
+ if-no-files-found : error
313
+ path : ./bindings/python/dist
304
314
305
315
release :
306
316
name : Release
0 commit comments