diff --git a/.github/workflows/job-build-publish.yml b/.github/workflows/job-build-publish.yml index 9a936e6..65f5798 100644 --- a/.github/workflows/job-build-publish.yml +++ b/.github/workflows/job-build-publish.yml @@ -16,13 +16,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install poetry + run: curl -sSL https://install.python-poetry.org | python - - name: Set up Python 3.11 uses: actions/setup-python@v4 with: python-version: "3.11" cache: "poetry" - - name: Install poetry - run: curl -sSL https://install.python-poetry.org | python - - name: Config poetry run: poetry config pypi-token.pypi "${{ secrets.PYPI_API_KEY }}" - name: Publish package