From a8a67a7129cbb7a548fe6a6b54117bc867eefe8d Mon Sep 17 00:00:00 2001 From: shaia Date: Wed, 7 Jan 2026 03:13:18 +0200 Subject: [PATCH] fix: Add skip-existing to handle partial uploads If a previous upload partially succeeded, skip already-uploaded files to allow completing the release. --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 079d07d..1cb34e6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -117,6 +117,7 @@ jobs: uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4 with: repository-url: https://test.pypi.org/legacy/ + skip-existing: true publish_pypi: name: Publish to PyPI @@ -162,3 +163,5 @@ jobs: - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4 + with: + skip-existing: true