Skip to content

Deploy on pypi.org

Deploy on pypi.org #1

Workflow file for this run

name: Deploy on pypi.org
on:
release:
types: [published]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/[email protected]
with:
version: "latest"
- name: Install dependencies
run: |
uv venv
uv pip install -e .
- name: Build packages
run: uv build
- name: Publish on pypi.org
uses: pypa/[email protected]