Skip to content

Become 0.49.0

Become 0.49.0 #42

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*"
jobs:
Publish:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5.4.0
- run: uv build
- run: uv publish
env:
UV_PUBLISH_USERNAME: "__token__"
UV_PUBLISH_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}