Skip to content

version bump and getting ready for 2.2.0 deploy #1

version bump and getting ready for 2.2.0 deploy

version bump and getting ready for 2.2.0 deploy #1

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
pypi-publish:
name: Build and publish Python distribution
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build package
run: uv build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1