Skip to content

docs: add changelog on patch release #5

docs: add changelog on patch release

docs: add changelog on patch release #5

Workflow file for this run

name: release
on:
push:
tags:
- "v*"
jobs:
main:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
contents: write
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v8.2.0
- run: uv build --wheel
- run: uv publish
- run: |
gh release create "$GITHUB_REF_NAME" \
--title "Release $GITHUB_REF_NAME" \
--generate-notes \
--verify-tag \
dist/*.whl