From f70cefcfc4765c7644f871a914d55ffd63feddb7 Mon Sep 17 00:00:00 2001 From: Andrew Tritt Date: Mon, 12 Jun 2023 11:07:40 -0700 Subject: [PATCH] Upload to real PyPI (#32) --- .github/workflows/deploy_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_release.yml b/.github/workflows/deploy_release.yml index 7283191..66a6896 100644 --- a/.github/workflows/deploy_release.yml +++ b/.github/workflows/deploy_release.yml @@ -29,7 +29,7 @@ jobs: run: | python -m pip install twine ls -1 dist - python -m twine upload --repository-url https://test.pypi.org/legacy/ --u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }} --skip-existing dist/* + python -m twine upload --u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }} --skip-existing dist/* - name: Publish wheel and source distributions as a GitHub release run: |