Skip to content

v0.1.2

v0.1.2 #7

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
jobs:
build-n-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: false # CACHE DEAKTIVIERT UM FEHLER ZU VERMEIDEN
- name: Set up Python
run: uv python install
- name: Build package
run: uv build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1