We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f53794 commit 1794319Copy full SHA for 1794319
2 files changed
.github/workflows/publish.yml
@@ -209,8 +209,6 @@ jobs:
209
runs-on: blacksmith-4vcpu-ubuntu-2404
210
steps:
211
- uses: actions/checkout@v3
212
- with:
213
- fetch-depth: 0
214
215
- uses: ./.github/actions/setup-bun
216
script/version.ts
@@ -12,7 +12,7 @@ if (!Script.preview) {
12
const previous = await getLatestRelease(Script.version)
13
const notes = await buildNotes(previous, "HEAD")
14
const body = notes.join("\n") || "No notable changes"
15
- 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}`
16
output.push(`release=${release.id}`)
17
output.push(`tag=${release.tagName}`)
18
}
0 commit comments