Skip to content

feat: improve release process #1

feat: improve release process

feat: improve release process #1

Workflow file for this run

name: "Publish to PyPi"
on:
push:
tags:
# Publish on any tag starting with a `v`, e.g., v0.1.0
- v*
jobs:
run:
runs-on: ubuntu-latest
environment:
name: pypi
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Build
run: uv build
- name: Publish
run: uv publish