File tree 1 file changed +18
-5
lines changed
1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change 82
82
83
83
- uses : actions/upload-artifact@v4
84
84
with :
85
- name : wheels
85
+ name : wheels-${{ matrix.os }}
86
86
path : ./wheelhouse/*.whl
87
87
88
88
publish :
@@ -110,14 +110,25 @@ jobs:
110
110
111
111
- uses : actions/download-artifact@v4
112
112
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
+
115
126
- name : Publish dist
116
127
run : |
117
128
python -m build . -s
118
129
tree wheels
119
130
tree dist
120
- twine upload dist/* wheels/*
131
+ twine upload dist/* wheels-ubuntu/*.whl wheels-macos/*.whl wheels-windows/*.whl
121
132
env :
122
133
TWINE_USERNAME : ${{ secrets.TWINE_USERNAME }}
123
134
TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
@@ -127,7 +138,9 @@ jobs:
127
138
prerelease : false
128
139
title : ${{ steps.get_tag.outputs.TAG }}
129
140
files : |
130
- wheels/*.whl
141
+ wheels-ubuntu/*.whl
142
+ wheels-macos/*.whl
143
+ wheels-windows/*.whl
131
144
dist/*
132
145
133
146
docs :
You can’t perform that action at this time.
0 commit comments