From 05c74c6c3aabd146dbd8376f5cd11d5d9730f895 Mon Sep 17 00:00:00 2001 From: Marc Schoenwiesner Date: Wed, 20 Jan 2021 11:13:30 +0100 Subject: [PATCH] switch from testpypi to pipy --- .github/workflows/python-publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 24cdda3..aeaca6e 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -22,7 +22,8 @@ jobs: - name: Build and publish env: TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.TESTPYPI_PASSWORD }} + TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel - twine upload --repository testpypi dist/* + twine --repository slab + twine upload --repository pypi dist/*