This commit is contained in:
Dax Raad
2026-01-29 12:08:56 -05:00
parent 6dea8e8337
commit 1f84bfb90f
2 changed files with 2 additions and 1 deletions

View File

@@ -196,6 +196,7 @@ jobs:
publish:
needs:
- version
- build-cli
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:

View File

@@ -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`)