Merge pull request #30 from Botts-Innovative-Research/dev #7
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.yml | |
| on: | |
| push: | |
| tags: | |
| # publishes any tag starting with 'v' as in 'v1.0' | |
| - v* | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: publish | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Install Python 3.13 | |
| run: uv python install 3.13 | |
| - name: Build | |
| run: uv build | |
| # Need to add a test that verifies the builds | |
| - name: Publish | |
| run: uv publish |