Skip to content

Commit 2353d2b

Browse files
committed
Upload/download each platform separately
1 parent eceb1ec commit 2353d2b

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

.github/workflows/pypi.yml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454

5555
- uses: actions/upload-artifact@v4
5656
with:
57-
name: wheels
57+
name: wheels-${{ matrix.platform }}
5858
path: ./wheelhouse/*.whl
5959

6060
check_dist:
@@ -69,9 +69,19 @@ jobs:
6969

7070
- uses: actions/download-artifact@v4
7171
with:
72-
name: wheels
72+
name: wheels-macos-12
7373
path: dist
7474

75+
- uses: actions/download-artifact@v4
76+
with:
77+
name: wheels-windows-2022
78+
path: dist
79+
80+
- uses: actions/download-artifact@v4
81+
with:
82+
name: wheels-ubuntu-20.04
83+
path: dist
84+
7585
- name: Check SDist
7686
run: |
7787
mkdir -p test-sdist
@@ -98,7 +108,17 @@ jobs:
98108

99109
- uses: actions/download-artifact@v4
100110
with:
101-
name: wheels
111+
name: wheels-macos-12
112+
path: dist
113+
114+
- uses: actions/download-artifact@v4
115+
with:
116+
name: wheels-windows-2022
117+
path: dist
118+
119+
- uses: actions/download-artifact@v4
120+
with:
121+
name: wheels-ubuntu-20.04
102122
path: dist
103123

104124
- uses: pypa/[email protected]

0 commit comments

Comments
 (0)