Do not run release flow for branches named branch-*. Only run it for pushes to main and release or candidate tags.
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f4d48c4..bddc89e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml
@@ -20,7 +20,6 @@ # - Merges to main # - Release candidate tags (*-rc*) # - Release tags (e.g., 45.0.0) -# - Release branches (branch-*) name: Release Build @@ -28,7 +27,6 @@ push: branches: - "main" - - "branch-*" # Release branches tags: - "*-rc*" # Release candidates (e.g., 45.0.0-rc1) - "[0-9]+.*" # Release tags (e.g., 45.0.0)