Skip to content

ci: Add pypi build and release github action #9

ci: Add pypi build and release github action

ci: Add pypi build and release github action #9

Workflow file for this run

name: PYPI Release
on:
push:
branches:
- main
tags:
- 'v*'
jobs:
pypi_release:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Install UV
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Source Cargo Environment
run: source $HOME/.cargo/env
- name: Build with UV
run: uvx --from build pyproject-build --installer uv
- name: Publish
uses: pypa/gh-action-pypi-publish@v1.4.2
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN_TEMP }}
packages_dir: ./dist/