Skip to content

Commit a63d85d

Browse files
committed
fix(ci): ensure unique upload names for wheels
1 parent 2c38b83 commit a63d85d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ jobs:
249249

250250
- uses: actions/upload-artifact@v4
251251
with:
252-
name: py-wheels
252+
name: py-wheels-${{ matrix.runs-on }}
253253
path: ./wheelhouse/*.whl
254254

255255
distribute:
@@ -366,8 +366,9 @@ jobs:
366366
steps:
367367
- uses: actions/download-artifact@v4
368368
with:
369-
name: py-wheels
370369
path: dist
370+
pattern: py-wheels-*
371+
merge-multiple: true
371372

372373
- uses: pypa/gh-action-pypi-publish@release/v1
373374
with:

0 commit comments

Comments
 (0)