Skip to content

fix: add package metadata for PyPI publication #8

fix: add package metadata for PyPI publication

fix: add package metadata for PyPI publication #8

Workflow file for this run

name: Publish PyPi
on:
push:
tags:
- 'v*.*.*'
workflow_dispatch:
jobs:
pypi-publish:
name: Upload to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write # For PyPI's trusted publishing
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: "Install uv"
uses: astral-sh/setup-uv@v6
- name: Build
run: uv build
- name: Publish to PyPi
run: uv publish -v dist/*