Skip to content

1.3.1-alpha.17

1.3.1-alpha.17 #123

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
jobs:
pypi-release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11']
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Includes getting tags
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Build package
run: uv build
shell: bash
- name: Publish to PyPI
env:
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: uv publish
shell: bash