fix: beta workflow - remove incorrect push that prevents PR creation (#6709)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: louislam <1336778+louislam@users.noreply.github.com>
This commit is contained in:
Copilot 2026-01-13 18:43:24 +08:00 committed by GitHub
parent 85863bdb97
commit 2f82ff3787
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,8 +58,8 @@ function commit(version) {
throw new Error("commit error"); throw new Error("commit error");
} }
res = childProcess.spawnSync("git", ["push", "origin", "master"]); // Note: Push is handled by gh pr create in the release script
console.log(res.stdout.toString().trim()); // No need to push here as we're on a release branch, not master
} }
/** /**