Skip to content

docs(phase-09): evolve PROJECT.md — milestone v1.2 complete #1

docs(phase-09): evolve PROJECT.md — milestone v1.2 complete

docs(phase-09): evolve PROJECT.md — milestone v1.2 complete #1

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
permissions:
id-token: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
environment: pypi
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Build package
run: |
pip install build
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1