From e1f33deeaf704b9ea758d58302fec7c1e954d142 Mon Sep 17 00:00:00 2001 From: 201st-Luka Date: Fri, 29 Sep 2023 17:08:11 +0200 Subject: [PATCH] fix: test.pypi.org upload fix --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2ff16e4..4a3d863 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,7 +36,7 @@ jobs: echo "Package version: $VERSION" echo "PACKAGE_VERSION=$VERSION" >> $GITHUB_ENV - name: Upload - run: python3 -m twine upload -u __token__ -p ${{ secrets.TEST_PYPI_TOKEN }} --repository testpypi dist/* + run: python3 -m twine upload -u __token__ -p ${{ secrets.TEST_PYPI_TOKEN }} --repository testpypi --skip-existing dist/* - name: Test run: pip install -i -i https://test.pypi.org/simple/ pyclasher==$PACKAGE_VERSION - name: Upload