Skip to content

Commit e6ce014

Browse files
authored
Merge pull request #10 from OpenNFT/fix-download-artifacts
Fix download artifact names
2 parents c175ca8 + 25bf055 commit e6ce014

File tree

1 file changed

+5
-16
lines changed

1 file changed

+5
-16
lines changed

.github/workflows/build-publish.yaml

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff 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-*

0 commit comments

Comments
 (0)