Skip to content

ci: add PyPI publish and test workflows (#2) #1

ci: add PyPI publish and test workflows (#2)

ci: add PyPI publish and test workflows (#2) #1

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- run: uv build
- uses: pypa/gh-action-pypi-publish@release/v1