Skip to content

Commit b0ac933

Browse files
committed
fix python
1 parent 29f49e3 commit b0ac933

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ jobs:
175175
env:
176176
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
177177
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
178-
run: twine upload dist/*
178+
run: |
179+
pip install twine
180+
twine upload dist/python/*.whl dist/python/*.tar.gz
179181
- name: Extract Version
180182
id: extract-version
181183
if: ${{ failure() }}

0 commit comments

Comments
 (0)