diff --git a/extra/release/beta.mjs b/extra/release/beta.mjs index 72a3495e4..3516a5fa4 100644 --- a/extra/release/beta.mjs +++ b/extra/release/beta.mjs @@ -13,6 +13,7 @@ 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,7 +52,7 @@ await checkTagExists(repoNames, version); execSync("node ./extra/beta/update-version.js"); // Git Push -spawnSync("git", ["push", "origin", branchName]); +spawnSync("git", ["push", "origin", branchName], { stdio: "inherit" }); // Create Pull Request await createReleasePR(version, previousVersion, dryRun, branchName, githubRunId);