feat(infra): create workflow for package publishing

This commit is contained in:
h
2025-11-07 00:42:00 +01:00
parent 5f228016eb
commit 25b625c696

26
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: "Publish"
on:
push:
tags:
- v*
jobs:
run:
runs-on: ubuntu-latest
environment:
name: pypi
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install Python 3.13
run: uv python install 3.13
- name: Build
run: uv build
- name: Publish
run: uv publish