test: disable github release step for testing

This commit is contained in:
Nathan Flurry 2026-01-27 15:43:44 -08:00
parent 2a922ef562
commit 3126fa21eb

View file

@ -618,10 +618,11 @@ async function main() {
await createAndPushTag(releaseOpts); await createAndPushTag(releaseOpts);
} }
if (shouldRunStep("create-github-release")) { // DISABLED FOR TESTING - uncomment when ready to release
console.log("==> Creating GitHub Release"); // if (shouldRunStep("create-github-release")) {
await createGitHubRelease(releaseOpts); // console.log("==> Creating GitHub Release");
} // await createGitHubRelease(releaseOpts);
// }
console.log("==> Complete"); console.log("==> Complete");
} }