Skip to content

Commit 58f7a06

Browse files
committed
fix artifacts dirs
1 parent b1de865 commit 58f7a06

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

.github/workflows/actions.yaml

+18-5
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282

8383
- uses: actions/upload-artifact@v4
8484
with:
85-
name: wheels
85+
name: wheels-${{ matrix.os }}
8686
path: ./wheelhouse/*.whl
8787

8888
publish:
@@ -110,14 +110,25 @@ jobs:
110110
111111
- uses: actions/download-artifact@v4
112112
with:
113-
name: wheels
114-
path: wheels
113+
name: wheels-ubuntu-latest
114+
path: wheels-ubuntu
115+
116+
- uses: actions/download-artifact@v4
117+
with:
118+
name: wheels-macos-latest
119+
path: wheels-macos
120+
121+
- uses: actions/download-artifact@v4
122+
with:
123+
name: wheels-windows-latest
124+
path: wheels-windows
125+
115126
- name: Publish dist
116127
run: |
117128
python -m build . -s
118129
tree wheels
119130
tree dist
120-
twine upload dist/* wheels/*
131+
twine upload dist/* wheels-ubuntu/*.whl wheels-macos/*.whl wheels-windows/*.whl
121132
env:
122133
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
123134
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
@@ -127,7 +138,9 @@ jobs:
127138
prerelease: false
128139
title: ${{ steps.get_tag.outputs.TAG }}
129140
files: |
130-
wheels/*.whl
141+
wheels-ubuntu/*.whl
142+
wheels-macos/*.whl
143+
wheels-windows/*.whl
131144
dist/*
132145
133146
docs:

0 commit comments

Comments
 (0)