Skip to content

Fix publish-url

Fix publish-url #2

Workflow file for this run

name: Publish Package (pypi)
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
permissions:
# IMPORTANT: this permission is mandatory for Trusted Publishing
id-token: write
steps:
- uses: actions/checkout@v4
- name: Install UV
uses: astral-sh/setup-uv@v6
- name: Install Dependencies
run: uv sync --locked --all-extras --dev
- name: Build Package
run: uv build --no-sources
- name: Publish Package to pypi
run: uv publish --index pypi