From 199da3313db250f049f3cfdd347eb4fcd075952e Mon Sep 17 00:00:00 2001 From: Douglas Stebila Date: Tue, 15 Sep 2026 15:13:42 -0400 Subject: [PATCH] Publish to PyPI on four-part version tags Allow maintenance releases such as 0.16.0.1 to trigger the PyPI publish workflow, which previously matched only three-part tags. Signed-off-by: Douglas Stebila Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/publish_pypi.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index bc34c72..8a63010 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -4,6 +4,7 @@ on: push: tags: - "[0-9]+.[0-9]+.[0-9]+" + - "[0-9]+.[0-9]+.[0-9]+.[0-9]+" permissions: contents: read