ci: skip stable changelog generation (#91)

This commit is contained in:
Marius
2026-02-03 12:57:42 +01:00
committed by GitHub
parent e871803ff8
commit 246f4071e6
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -68,6 +68,7 @@ jobs:
env:
OPENCODE_CHANNEL: latest
OPENCODE_VERSION: ${{ inputs.version }}
OPENCODE_SKIP_NOTES: "1"
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+4 -1
View File
@@ -37,7 +37,10 @@ let notes: string[] = []
console.log("=== publishing ===\n")
if (!Script.preview) {
const skipNotes = process.env["OPENCODE_SKIP_NOTES"] === "1" // kilocode_change
if (skipNotes) console.log("changelog skipped: OPENCODE_SKIP_NOTES=1") // kilocode_change
if (!Script.preview && !skipNotes) {
const previous = await getLatestRelease()
notes = await buildNotes(previous, "HEAD")
// notes.unshift(highlightsTemplate)