Bump version #15
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: release & publish workflow | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| jobs: | |
| build: | |
| name: Build and publish release | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi-release | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install Python 3.13 | |
| run: uv python install 3.13 | |
| - name: Build | |
| run: uv build | |
| # TODO: fix gh release pipeline | |
| # - name: create github release | |
| # id: create_release | |
| # uses: softprops/action-gh-release@v2 | |
| # if: github.ref_type == 'tag' | |
| # with: | |
| # files: dist/* | |
| # draft: true | |
| # prerelease: false | |
| - name: Publish | |
| run: uv publish |