Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.

v0.1.3

v0.1.3 #3

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
run: pip install uv
- name: Build package
run: |
rm -rf dist
uv build
# For PyPI (trusted publishing)
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1