Skip to content

Initial commit

Initial commit #3

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v*'
jobs:
release:
name: Publish to PyPI
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Install uv and setup the python version
uses: astral-sh/setup-uv@v5
- name: Install the project
run: uv sync --all-groups
- name: Build wheel
run: uv build
- name: Publish package
run: uv publish