Skip to content

Commit 2a31ea6

Browse files
committed
build: Fix Python release upload
1 parent c3c3605 commit 2a31ea6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/python-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,12 +299,11 @@ jobs:
299299
run: |
300300
mkdir dist
301301
mv all/*/* dist
302-
rm -rf all
303302
- uses: actions/setup-python@v5
304303
- name: Publish to PyPi
305304
env:
306305
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
307306
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
308307
run: |
309308
pip install --upgrade twine
310-
twine upload --skip-existing *
309+
twine upload --skip-existing dist/*

0 commit comments

Comments
 (0)