Simulation evaluation (#25) #36
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 Python Package | |
| on: | |
| push: | |
| tags: | |
| - "v*.*.*" # Triggers on version tags like v0.1.0, v1.2.3, etc. | |
| jobs: | |
| pypi: | |
| name: Publish to PyPI | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # This ensures all tags are fetched | |
| - uses: astral-sh/setup-uv@v3 | |
| - run: uv build | |
| - run: uv publish --trusted-publishing always |