mirror of
https://github.com/anomalyco/opencode.git
synced 2026-02-01 22:48:16 +00:00
CI
This commit is contained in:
@@ -9,12 +9,12 @@ const notes = [] as string[]
|
|||||||
console.log("=== publishing ===\n")
|
console.log("=== publishing ===\n")
|
||||||
|
|
||||||
if (!Script.preview) {
|
if (!Script.preview) {
|
||||||
const previous = await fetch("https://registry.npmjs.org/opencode-ai/latest")
|
const previous = await fetch("https://api.github.com/repos/sst/opencode/releases/latest")
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
if (!res.ok) throw new Error(res.statusText)
|
if (!res.ok) throw new Error(res.statusText)
|
||||||
return res.json()
|
return res.json()
|
||||||
})
|
})
|
||||||
.then((data: any) => data.version)
|
.then((data: any) => data.tag_name.replace(/^v/, ""))
|
||||||
|
|
||||||
const log =
|
const log =
|
||||||
await $`git log v${previous}..HEAD --oneline --format="%h %s" -- packages/opencode packages/sdk packages/plugin packages/desktop packages/app`.text()
|
await $`git log v${previous}..HEAD --oneline --format="%h %s" -- packages/opencode packages/sdk packages/plugin packages/desktop packages/app`.text()
|
||||||
|
|||||||
Reference in New Issue
Block a user