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:
141141 - name : Archive source dist and wheel
142142 uses : actions/upload-artifact@v4
143143 with :
144- name : artifacts
144+ name : artifacts-${{ runner.os }}
145145 path : dist
146146 retention-days : 2
147147
@@ -163,10 +163,22 @@ jobs:
163163 python -m pip install --upgrade pip
164164 pip install twine
165165
166- - name : Download wheels and sdist
166+ - name : Download Linux wheels and sdist
167167 uses : actions/download-artifact@v4
168168 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
170182 path : dist
171183
172184 - name : Publish PyPI package
You can’t perform that action at this time.
0 commit comments