From f00bd35231bf20b85d91d451d89811e01a0e6acf Mon Sep 17 00:00:00 2001 From: Christian Knittl-Frank Date: Tue, 2 Nov 2021 20:22:37 +0100 Subject: [PATCH] Fix GitHub workflow Remove user for PyPI --- .github/workflows/publish.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 54ad9d3..e16c1ef 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -29,11 +29,9 @@ jobs: - name: Publish package to Test PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} - name: Publish package to PyPI if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 with: - user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}