Skip to content

Release

Release #152

Workflow file for this run

name: Release
on:
release:
types: [ published ]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Acquire sources
uses: actions/checkout@v4
- name: Install uv
run: pipx install uv
- name: Pin python version
run: uv python pin 3.12
- name: Install project
run: uv sync
- name: Install project
run: .github/workflows/install.sh testing
- name: Build
run: uvx --from build pyproject-build --installer uv
- name: Publish
run: uvx twine upload dist/* --username=__token__ --password=${{ secrets.PYPI_TOKEN }} --yes