We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentc8b47e2 commit2f2b749Copy full SHA for 2f2b749
.github/workflows/ci.yml
@@ -264,13 +264,13 @@ jobs:
264
# pypa/gh-action-pypi-publish@master does not work on OSX
265
# Alpha, Beta and dev releases contain a - in the tag.
266
if:contains(github.ref, '-') && startsWith(github.ref, 'refs/tags')
267
-run:twine upload --repository-url https://test.pypi.org/legacy/ dist/*
+run:twine upload --skip-existing --repository-url https://test.pypi.org/legacy/ dist/*
268
env:
269
TWINE_USERNAME:__token__
270
TWINE_PASSWORD:${{ secrets.TEST_PYPI_API_TOKEN }}
271
-name:Publish package to PyPI
272
if:"!contains(github.ref, '-') && startsWith(github.ref, 'refs/tags')"
273
-run:twine upload dist/*
+run:twine upload--skip-existingdist/*
274
275
276
TWINE_PASSWORD:${{ secrets.PYPI_API_TOKEN }}