Skip to content
This repository has been archived by the owner on Feb 14, 2025. It is now read-only.

v2.2.0

v2.2.0 #13

Workflow file for this run

name: Publish to PyPI.org
on:
release:
types: [published]
jobs:
publish:
name: Build and Publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.5.14"
- name: Create a virtual environment
run: uv venv
- name: Build our .whl file
run: uvx hatch build
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}