Skip to content

v0.4.0 — the engine refactor #5

v0.4.0 — the engine refactor

v0.4.0 — the engine refactor #5

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
permissions:
id-token: write
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install build tools
run: python -m pip install -U pip build twine
- name: Build package
run: |
python -m build
python -m twine check dist/*
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1