1 parent 6ea1d52 commit 5b79671Copy full SHA for 5b79671
1 file changed
.github/workflows/release.yml
@@ -45,12 +45,14 @@ jobs:
45
run: |
46
python -m pip install --upgrade pip
47
python -m pip install twine
48
- twine upload --repository-url https://test.pypi.org/legacy/ dist/* -u __token__ -p ${{ secrets.TEST_PYPI_TOKEN }}
+ twine upload --repository-url https://test.pypi.org/legacy/ dist/* -u __token__ -p ${{ secrets.TEST_PYPI_TOKEN }} --skip-existing --verbose
49
50
- name: Publish to PyPI
51
if: ${{ !(github.event_name == 'workflow_dispatch' && github.event.inputs.dry_run == 'true') }}
52
uses: pypa/gh-action-pypi-publish@v1.5.0
53
with:
54
+ skip-existing: true
55
+ verbose: true
56
user: __token__
57
password: ${{ secrets.PYPI_TOKEN }}
58
0 commit comments