diff options
| author | Dax Raad <[email protected]> | 2026-01-30 00:48:08 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-01-30 00:48:08 -0500 |
| commit | 1794319a4c2cbe137934cec7d845862af9d206c6 (patch) | |
| tree | 9b7a5954f736df7fc8961372cf122587b1c9fc16 | |
| parent | 8f537940178772deedf3317c5c669950f1f6c5a6 (diff) | |
| download | opencode-1794319a4c2cbe137934cec7d845862af9d206c6.tar.gz opencode-1794319a4c2cbe137934cec7d845862af9d206c6.zip | |
ci
| -rw-r--r-- | .github/workflows/publish.yml | 2 | ||||
| -rwxr-xr-x | script/version.ts | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2fc263523..01f539eb0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -209,8 +209,6 @@ jobs: runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - uses: actions/checkout@v3 - with: - fetch-depth: 0 - uses: ./.github/actions/setup-bun diff --git a/script/version.ts b/script/version.ts index 723677b8c..2c158d222 100755 --- a/script/version.ts +++ b/script/version.ts @@ -12,7 +12,7 @@ if (!Script.preview) { const previous = await getLatestRelease(Script.version) const notes = await buildNotes(previous, "HEAD") const body = notes.join("\n") || "No notable changes" - await $`gh release edit v${Script.version} --draft=false --title "v${Script.version}" --notes ${body}` + await $`gh release edit v${Script.version} --title "v${Script.version}" --notes ${body}` output.push(`release=${release.id}`) output.push(`tag=${release.tagName}`) } |
