From 81eb452e9f0c7860dff30f94a48b8c410abfce7e Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Tue, 19 Dec 2023 11:02:13 +0100 Subject: [PATCH] ci: add skip-existing to twine upload --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index c6cfb53e..3ace18a7 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -67,7 +67,7 @@ deploy: - name: Upload to PyPI using twine run: | - twine upload dist/* + twine upload --skip-existing dist/* env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}