name: poetry-publish on: release: types: [published] workflow_dispatch: jobs: build-and-publish: name: Build and Publish to PyPI runs-on: ubuntu-latest steps: - name: Check out the repository uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.11 - name: Install poetry run: | curl -sSL https://install.python-poetry.org | python3 - echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Configure poetry run: | poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} - name: Build the Python package run: poetry build - name: Publish the package to PyPI run: poetry publish env: POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}