From 6c5ef3ed7f27fece86773496b2a2312ce9e1ced8 Mon Sep 17 00:00:00 2001 From: Chisanan232 Date: Mon, 1 Jun 2026 21:54:00 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(release-intent):=20Disable=20ce?= =?UTF-8?q?ntralized=20auto-release=20(release:=20true=20=E2=86=92=20false?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The centralized release workflow (Chisanan232/GitHub-Action_Reusable_ Workflows-Python) fires on master push, auto-bumps version per intent.yaml level: patch, then tries to create v tag. On every push since alpha-2 this has been failing because the bumped version (v0.0.2) already exists from the alpha-2 cycle's prior auto-bump. Run 26737994023 surfaced this: 🏷️ Creating tag: v0.0.2 fatal: tag 'v0.0.2' already exists ##[error]Process completed with exit code 128. The operator's actual release flow is manual: push v* tag → Release Python SDK workflow builds wheels with AAASM-2189 protoc fix → publishes to PyPI via Trusted Publisher OIDC. The centralized auto-release is redundant AND broken for this project. Setting release: false disables the auto-release entirely without breaking the manual-tag-driven flow. Tracked: AAASM-2334 --- .github/tag_and_release/intent.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/tag_and_release/intent.yaml b/.github/tag_and_release/intent.yaml index 441ecd3..c397b26 100644 --- a/.github/tag_and_release/intent.yaml +++ b/.github/tag_and_release/intent.yaml @@ -3,7 +3,7 @@ # If this file doesn't exist, defaults will be used # === RELEASE CONTROL === -release: true +release: false level: patch # auto | patch | minor | major # === RELEASE ARTIFACTS ===