From b25a070d5e84a0dc4d768736f4290bc970a8b7ae Mon Sep 17 00:00:00 2001 From: BillTheMaker Date: Sat, 6 Dec 2025 18:28:52 -0700 Subject: [PATCH] Add step to publish package to PyPI --- .github/workflows/publish.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3af5ccc..44e9cdc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -85,4 +85,11 @@ jobs: command: upload args: --skip-existing --non-interactive + - name: Publish to PyPI # ← ADD THIS + uses: PyO3/maturin-action@v1 + with: + token: ${{ secrets.PYPI_API_TOKEN }} + command: upload + args: --skip-existing --non-interactive +