From 3b1c075b142c4d48b352e677b4fca011e298af70 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Mon, 1 May 2023 20:19:54 -0700 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d5e11d0b..c4b1b5c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,6 @@ jobs: id: mint uses: tschm/token-mint-action@v1.0.1 - - name: Publish the package to pypi - run : | - poetry config pypi-token.pypi ${{ secrets.TWINE_TOKEN }} - poetry publish + - name: Publish the package with poetry + run: | + poetry publish -u __token__ -p '${{ steps.mint.outputs.api-token }}'