Compare commits

...

4 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
a59af96ae2 Revert unneeded changes to update-version files 2026-01-13 10:19:19 +00:00
copilot-swe-agent[bot]
c82b612763 fix: remove explicit git push in beta release to avoid branch protection conflicts
Co-authored-by: louislam <1336778+louislam@users.noreply.github.com>
2026-01-13 10:18:06 +00:00
copilot-swe-agent[bot]
533abf08f7 Update plan to fix branch push rejection issue
Co-authored-by: louislam <1336778+louislam@users.noreply.github.com>
2026-01-13 10:15:56 +00:00
copilot-swe-agent[bot]
1d817b6269 Initial plan 2026-01-13 10:11:52 +00:00

View File

@ -13,7 +13,6 @@ import {
createReleasePR,
} from "./lib.mjs";
import semver from "semver";
import { spawnSync } from "node:child_process";
const repoNames = getRepoNames();
const version = process.env.RELEASE_BETA_VERSION;
@ -51,10 +50,7 @@ await checkTagExists(repoNames, version);
// node extra/beta/update-version.js
execSync("node ./extra/beta/update-version.js");
// Git Push
spawnSync("git", ["push", "origin", branchName], { stdio: "inherit" });
// Create Pull Request
// Create Pull Request (gh pr create will handle pushing the branch)
await createReleasePR(version, previousVersion, dryRun, branchName, githubRunId);
// Build frontend dist