From f2db413bae532fe1a924766aa3d87abecae1308d Mon Sep 17 00:00:00 2001 From: Ferdinand Kapl Date: Mon, 14 Aug 2023 10:57:12 +0200 Subject: [PATCH] Changed publishing from test pypi to pypi --- .github/workflows/publish.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6856fb0..5ddf6c6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Publish to Test PyPI.org +name: Publish to PyPI.org on: release: types: [published] @@ -26,8 +26,7 @@ jobs: python -m build --sdist --wheel --outdir dist/ twine check dist/* - - name: Publish package on Test PyPI + - name: Publish package on PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - password: ${{ secrets.TEST_PYPI_API_TOKEN }} - repository-url: https://test.pypi.org/legacy/ + password: ${{ secrets.PYPI_API_TOKEN }}