Skip to content

v2.0.3

v2.0.3 #4

Workflow file for this run

name: Publish Python Package
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
# This block allows GitHub to prove its identity to PyPI
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11' # Matches your high-quality project standards
- name: Install build tools
run: pip install build
- name: Build package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# Note: No 'with: password' here. It's automatic now!