Skip to content

Update version to 0.1.0b in pyproject.toml #6

Update version to 0.1.0b in pyproject.toml

Update version to 0.1.0b in pyproject.toml #6

Workflow file for this run

name: "Publish"
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@v6
- name: Install Python
run: uv python install
- name: Build
run: uv build
- name: Publish
run: uv publish