From 0c53d93dbb35ba64f77df11e2c511561ea8b225c Mon Sep 17 00:00:00 2001 From: Rafael Irgolic Date: Wed, 8 Nov 2023 18:27:09 +0000 Subject: [PATCH] release_version: specify token differently --- .github/workflows/release_version.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release_version.yml b/.github/workflows/release_version.yml index d3f8c1228..9fc9f07ef 100644 --- a/.github/workflows/release_version.yml +++ b/.github/workflows/release_version.yml @@ -28,10 +28,7 @@ jobs: - name: Install dependencies run: make full - - name: Set PyPI credentials + - name: Upload to PyPI env: PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: poetry config pypi-token.pypi "$PYPI_PASSWORD" - - - name: Upload to PyPI - run: poetry publish --build \ No newline at end of file + run: poetry publish --build -u __token__ -p $PYPI_PASSWORD \ No newline at end of file