v0.73.0 #22
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
| # This workflow is responsible for: | |
| # - publishing the Python Package to PyPI. | |
| # It is triggered when a new release is created. | |
| name: publish | |
| on: | |
| release: | |
| types: [created] | |
| workflow_dispatch: | |
| # Allow this workflow to be triggered manually | |
| jobs: | |
| publish: | |
| name: publish-release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13 | |
| - name: Build and publish distribution | |
| env: | |
| TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
| run: | | |
| make ci | |
| make publish-release |