[0.1.0] - 2025-12-31 #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 markus-ai-feedback package to PyPI | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| run: | |
| name: Publish package | |
| if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi | |
| permissions: | |
| id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install Python | |
| run: uv python install | |
| - name: Build the package | |
| run: uv build | |
| - name: Publish | |
| run: uv publish |