Skip to content

Merge pull request #8 from noc0dev/feature/fix-readme #4

Merge pull request #8 from noc0dev/feature/fix-readme

Merge pull request #8 from noc0dev/feature/fix-readme #4

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Build package
run: uv build
- name: Publish to PyPI
run: uv publish --token ${{ secrets.PYPI_TOKEN }}