Skip to content

v0.0.2

v0.0.2 #3

Workflow file for this run

name: Publish Python Package
on:
release:
types: [published, edited]
jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write # for PyPI Trusted Publishing
contents: read # for actions/checkout to access private repo
steps:
- uses: actions/checkout@v4
- name: Setup uv python package manager
uses: astral-sh/setup-uv@v6
with:
python-version: "3.12"
enable-cache: true
- name: Build package distributions
run: |
uv build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1