Skip to content

Commit bf12c40

Browse files
committed
Update artifact names
1 parent 84a838f commit bf12c40

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/publish.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)