From 1f84bfb90fa98d0a5ddfaf49c6cc2f440b69ef6a Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Thu, 29 Jan 2026 12:08:56 -0500 Subject: [PATCH] sync --- .github/workflows/publish.yml | 1 + script/publish.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bca41ac8ed..c253623528 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -196,6 +196,7 @@ jobs: publish: needs: + - version - build-cli runs-on: blacksmith-4vcpu-ubuntu-2404 steps: diff --git a/script/publish.ts b/script/publish.ts index aeb07118b8..4982fefe25 100755 --- a/script/publish.ts +++ b/script/publish.ts @@ -75,7 +75,7 @@ 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"}` +await $`gh release edit v${Script.version} --draft --title "v${Script.version}" --notes ${notes.join("\n") || "No notable changes"}` console.log("\n=== cli ===\n") await import(`../packages/opencode/script/publish.ts`)