From 90e234344b3d28f81810199e568b5860cc0f8282 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Mar 2026 17:18:41 +0000 Subject: [PATCH 1/3] Initial plan From fc4cf616a57f1c811557e46d05969255b0151bd4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Mar 2026 17:21:27 +0000 Subject: [PATCH 2/3] Trigger PyPI publish workflow on version tags Co-authored-by: alexlib <747110+alexlib@users.noreply.github.com> --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a62de1b9..61c05ecc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,9 @@ name: Build and upload to PyPI on: - release: - types: [published] + push: + tags: + - "v*" + - "*.*.*" jobs: build-and-publish: From 826aaa86d8140b19df2946a9d5f6f69a4705ade9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Mar 2026 17:23:15 +0000 Subject: [PATCH 3/3] Refine tag patterns for PyPI publish trigger Co-authored-by: alexlib <747110+alexlib@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61c05ecc..9b859e1b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,8 +2,8 @@ name: Build and upload to PyPI on: push: tags: - - "v*" - - "*.*.*" + - "v[0-9]*.[0-9]*.[0-9]*" + - "[0-9]*.[0-9]*.[0-9]*" jobs: build-and-publish: