From 0369328eb2c26f0f2b8e78e6fedbb13be07cdd65 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Thu, 29 Jan 2026 11:42:11 -0500 Subject: [PATCH] sync --- script/publish.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/publish.ts b/script/publish.ts index 105dcab72c..d93f4a89e1 100755 --- a/script/publish.ts +++ b/script/publish.ts @@ -5,7 +5,7 @@ import { Script } from "@opencode-ai/script" import { buildNotes, getLatestRelease } from "./changelog" if (!Script.release) { - throw new Error("Missing OPENCODE_RELEASE_ID environment variable") + throw new Error("Missing OPENCODE_RELEASE environment variable") } const highlightsTemplate = ` @@ -75,7 +75,6 @@ await $`git fetch origin` await $`git cherry-pick HEAD..origin/dev`.nothrow() await $`git push origin HEAD --tags --no-verify --force-with-lease` await new Promise((resolve) => setTimeout(resolve, 5_000)) - await $`gh release edit ${Script.release} --draft --title "v${Script.version}" --notes ${notes.join("\n") || "No notable changes"}` console.log("\n=== cli ===\n")