Skip to content

v0.2.18

v0.2.18 #40

Workflow file for this run

# This workflow will upload a Python Package using pypa/gh-action-pypi-publish when a release is created
name: Upload Python Package
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-python: true
- name: Build distribution
run: make dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1