From bcf462489671133a03960742cb4d27f9060253c1 Mon Sep 17 00:00:00 2001 From: Martin Sosic Date: Thu, 5 Sep 2024 00:18:48 +0200 Subject: [PATCH] fix --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 294e2f6..3116ec7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -133,11 +133,11 @@ jobs: run: | python -m pip install twine - python -m twine upload wheelhouse/*.whl + python -m twine upload --skip-existing wheelhouse/*.whl # While I do want to upload wheels for both Mac and Linux, # it makes no sense to upload sdist twice. if [ ${{ matrix.deploy-sdist }} == "true" ]; then - python -m twine upload sdist/edlib-*.tar.gz + python -m twine upload --skip-existing sdist/edlib-*.tar.gz fi