File tree Expand file tree Collapse file tree 1 file changed +5
-16
lines changed
Expand file tree Collapse file tree 1 file changed +5
-16
lines changed Original file line number Diff line number Diff line change @@ -118,31 +118,20 @@ jobs:
118118 - name : Build Python sdist
119119 run : poetry build -f sdist
120120
121- - name : Download manylinux- wheels
121+ - name : Download all wheels
122122 uses : actions/download-artifact@v4
123123 with :
124- name : manylinux-wheels
125- path : dist
126-
127- - name : Download macos-wheels
128- uses : actions/download-artifact@v4
129- with :
130- pattern : macos-wheels-*
131- path : dist
132-
133- - name : Download windows-wheels
134- uses : actions/download-artifact@v4
135- with :
136- pattern : windows-wheels-*
124+ pattern : " *-wheels-*"
137125 path : dist
126+ merge-multiple : true
138127
139128 - name : Display dist files to upload to PyPI
140129 run : ls -R
141130 working-directory : dist
142131
143- - name : Upload dist/ wheels to PyPI
132+ - name : Upload wheels to PyPI
144133 env :
145134 TWINE_USERNAME : __token__
146135 TWINE_PASSWORD : ${{ secrets.PYPI_TOKEN }}
147136
148- run : twine upload dist/*
137+ run : twine upload dist/python_rtspm- *
You can’t perform that action at this time.
0 commit comments