Skip to content

1.5.2

1.5.2 #24

Workflow file for this run

name: Deploy to PyPI
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Pull package data
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Setup up uv
run: curl -LsSf https://astral.sh/uv/0.4.5/install.sh | sh
- name: Build package
run: uv build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.4.1
with:
skip_existing: true
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}