SLEAP v1.5.2 #74
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
| # Package builds | |
| name: Build | |
| on: | |
| release: | |
| types: | |
| - published | |
| # # Modify and uncomment below to manually trigger build: | |
| # push: | |
| # branches: | |
| # - talmo/v1.4.2 | |
| jobs: | |
| pypi: | |
| name: PyPI Wheel | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| id-token: write # Required for PyPI trusted publishing | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup UV | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Build distributions | |
| run: | | |
| uv build | |
| - name: Publish to PyPI | |
| run: | | |
| uv publish |