Spaces:
No application file
No application file
| name: Publish Python π distributions π¦ to PyPI and TestPyPI | |
| on: | |
| release: | |
| types: [published] # This will trigger the workflow when you create a new release | |
| jobs: | |
| build-n-publish: | |
| name: Build and publish Python π distributions π¦ to PyPI and TestPyPI | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # IMPORTANT: this permission is mandatory for trusted publishing | |
| id-token: write | |
| steps: | |
| - 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: Install dependencies | |
| run: poetry install | |
| - name: Build a binary wheel and a source tarball | |
| run: poetry build | |
| - name: Publish distribution π¦ to Test PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| repository_url: https://test.pypi.org/legacy/ | |
| - name: Publish distribution π¦ to PyPI | |
| if: startsWith(github.ref, 'refs/tags') | |
| uses: pypa/gh-action-pypi-publish@release/v1 |