Skip to content

v1.6.0

v1.6.0 #43

Workflow file for this run

name: Publish package to PyPI
on:
push:
tags:
- 'v*'
jobs:
build-n-publish:
name: Build and publish package to PyPI
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
python-version: "3.11"
- name: Build
run: uv build
- name: Publish
env:
PYPI_TOKEN: ${{ secrets.pypi_password }}
run: uv publish --token $PYPI_TOKEN