v0.1.1 #1
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: publish | |
| on: | |
| release: | |
| types: [published] | |
| permissions: | |
| id-token: write # required for OIDC / PyPI trusted publishing | |
| contents: read | |
| jobs: | |
| pypi: | |
| runs-on: ubuntu-latest | |
| environment: pypi # must match the PyPI publisher's Environment | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v5 | |
| - run: uv build | |
| - run: uv publish --trusted-publishing always |