Skip to content

Version 4.4.0

Version 4.4.0 #19

Workflow file for this run

---
name: Publish release
on:
release:
types:
- "released"
workflow_dispatch:
jobs:
lint:
uses: ./.github/workflows/linter.yml
tests:
uses: ./.github/workflows/tests.yml
release:
runs-on: ubuntu-latest
name: Release to PyPi
needs: [lint, tests]
steps:
- id: git-checkout
name: Checkout
uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v6
- id: build-and-publish
name: Build and publish to pypi
env:
UV_PUBLISH_USERNAME: __token__
UV_PUBLISH_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
uv build
uv publish