Release v0.5.1 - Task Deduplication Fix #11
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: on release creation test and upload to PyPI | |
| on: | |
| release: | |
| types: [created] | |
| jobs: | |
| deploy: | |
| name: Build and publish distributions to PyPI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Set up Python | |
| uses: actions/setup-python@main | |
| with: | |
| python-version: '3.x' | |
| - 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_API_TOKEN }} # Using API token authentication | |
| - name: Build and publish to Pypi | |
| run: | | |
| poetry build | |
| poetry publish | |