Skip to content

Add quick reference links to README.md #7

Add quick reference links to README.md

Add quick reference links to README.md #7

Workflow file for this run

name: Publish to PyPI
on:
push:
branches:
- main
jobs:
build-and-publish:
name: Build and Publish to PyPI
runs-on: ubuntu-latest
# REQUIRED: These permissions allow the GitHub Action to request an OIDC token from PyPI
permissions:
id-token: write
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install build dependencies
run: python -m pip install --upgrade pip build
- name: Build the package (sdist and wheel)
run: python -m build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
# Fails silently if the version already exists on PyPI (prevents CI crashes on non-release merges)
skip-existing: true