File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ jobs:
141
141
- name : Archive source dist and wheel
142
142
uses : actions/upload-artifact@v4
143
143
with :
144
- name : artifacts
144
+ name : artifacts-${{ runner.os }}
145
145
path : dist
146
146
retention-days : 2
147
147
@@ -163,10 +163,22 @@ jobs:
163
163
python -m pip install --upgrade pip
164
164
pip install twine
165
165
166
- - name : Download wheels and sdist
166
+ - name : Download Linux wheels and sdist
167
167
uses : actions/download-artifact@v4
168
168
with :
169
- name : artifacts
169
+ name : artifacts-Linux
170
+ path : dist
171
+
172
+ - name : Download Windows wheels and sdist
173
+ uses : actions/download-artifact@v4
174
+ with :
175
+ name : artifacts-Windows
176
+ path : dist
177
+
178
+ - name : Download Mac wheels and sdist
179
+ uses : actions/download-artifact@v4
180
+ with :
181
+ name : artifacts-macOS
170
182
path : dist
171
183
172
184
- name : Publish PyPI package
You can’t perform that action at this time.
0 commit comments