From b7e284d54f57642dbc2d9044e4041d7c8dec28f9 Mon Sep 17 00:00:00 2001 From: Jan Kieseler Date: Fri, 8 Nov 2024 17:35:22 +0100 Subject: [PATCH] switched to PyPi --- .github/workflows/build_and_upload.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_upload.yml b/.github/workflows/build_and_upload.yml index c45956d..1a028f9 100644 --- a/.github/workflows/build_and_upload.yml +++ b/.github/workflows/build_and_upload.yml @@ -49,12 +49,12 @@ jobs: - name: Install Twine for Upload run: python -m pip install twine - - name: Upload to TestPyPI with Twine (verbose) + - name: Upload to PyPI with Twine (verbose) env: TWINE_USERNAME: "__token__" TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: | - twine upload --verbose --repository-url https://test.pypi.org/legacy/ wheelhouse/* + twine upload --verbose wheelhouse/* # - name: Upload to TestPyPI # uses: pypa/gh-action-pypi-publish@release/v1