Skip to content

v0.70.1

v0.70.1 #95

Workflow file for this run

name: Publish Python Package
on:
release:
types:
- published
jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}
- uses: actions/setup-python@v5
with:
python-version: "3.12.9"
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
# Install a specific version of uv.
version: "0.6.11"
- name: Build package
run: uv build
- name: Publish to PyPI
run: uv publish