Skip to content

Commit 7674419

Browse files
committed
remove skip existing on twine
1 parent 1cc26b3 commit 7674419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ jobs:
9595
- name: Upload to Public PyPi
9696
run: |
9797
pip install twine
98-
twine upload --skip-existing ./**/*.whl
99-
twine upload --skip-existing ./**/*.tar.gz
98+
twine upload ./**/*.whl
99+
twine upload ./**/*.tar.gz
100100
env:
101101
TWINE_USERNAME: __token__
102102
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)