From 19e3d08af4f35c97bf22140b9a47279a9a12242a Mon Sep 17 00:00:00 2001 From: Vasco Serrano Date: Wed, 20 Sep 2023 22:31:07 +0100 Subject: [PATCH] Poetry version fixing for action --- .github/workflows/deploy-pypi.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-pypi.yml b/.github/workflows/deploy-pypi.yml index 994aa685cf9..4b6f7505b02 100644 --- a/.github/workflows/deploy-pypi.yml +++ b/.github/workflows/deploy-pypi.yml @@ -9,7 +9,6 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout code uses: actions/checkout@v2 with: @@ -22,6 +21,8 @@ jobs: - name: Install Poetry uses: Gr1N/setup-poetry@v8 + with: + poetry-version: "1.5.1" - name: Poetry setup tools run: poetry add setuptools==60.0.0 @@ -33,7 +34,7 @@ jobs: run: poetry build - name: Deploy to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1" with: password: ${{ secrets.pypi_password }} skip_existing: true