summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xpackages/opencode/script/publish.ts4
-rw-r--r--packages/opencode/src/installation/index.ts3
-rw-r--r--packages/script/src/index.ts2
-rwxr-xr-xscript/publish.ts2
4 files changed, 4 insertions, 7 deletions
diff --git a/packages/opencode/script/publish.ts b/packages/opencode/script/publish.ts
index 6e8bf4a86..ff75bbb8d 100755
--- a/packages/opencode/script/publish.ts
+++ b/packages/opencode/script/publish.ts
@@ -37,10 +37,6 @@ await Bun.file(`./dist/${pkg.name}/package.json`).write(
)
const tags = [Script.channel]
-if (!Script.preview) {
- const major = Script.version.split(".")[0]
- tags[0] = `latest-${major}`
-}
const tasks = Object.entries(binaries).map(async ([name]) => {
if (process.platform !== "win32") {
diff --git a/packages/opencode/src/installation/index.ts b/packages/opencode/src/installation/index.ts
index 18e9dc9e8..d630c3f93 100644
--- a/packages/opencode/src/installation/index.ts
+++ b/packages/opencode/src/installation/index.ts
@@ -184,7 +184,8 @@ export namespace Installation {
return reg.endsWith("/") ? reg.slice(0, -1) : reg
})
const [major] = VERSION.split(".").map((x) => Number(x))
- const channel = CHANNEL === "latest" ? `latest-${major}` : CHANNEL
+ // const channel = CHANNEL === "latest" ? `latest-${major}` : CHANNEL
+ const channel = CHANNEL
return fetch(`${registry}/opencode-ai/${channel}`)
.then((res) => {
if (!res.ok) throw new Error(res.statusText)
diff --git a/packages/script/src/index.ts b/packages/script/src/index.ts
index 2f3f96c8d..09ebb4463 100644
--- a/packages/script/src/index.ts
+++ b/packages/script/src/index.ts
@@ -29,7 +29,7 @@ const IS_PREVIEW = CHANNEL !== "latest"
const VERSION = await (async () => {
if (env.OPENCODE_VERSION) return env.OPENCODE_VERSION
if (IS_PREVIEW) return `0.0.0-${CHANNEL}-${new Date().toISOString().slice(0, 16).replace(/[-:T]/g, "")}`
- const version = await fetch("https://registry.npmjs.org/opencode-ai/latest-1")
+ const version = await fetch("https://registry.npmjs.org/opencode-ai/latest")
.then((res) => {
if (!res.ok) throw new Error(res.statusText)
return res.json()
diff --git a/script/publish.ts b/script/publish.ts
index 1be0df20d..ce0fd7d0d 100755
--- a/script/publish.ts
+++ b/script/publish.ts
@@ -9,7 +9,7 @@ const notes = [] as string[]
console.log("=== publishing ===\n")
if (!Script.preview) {
- const previous = await fetch("https://registry.npmjs.org/opencode-ai/latest-1")
+ const previous = await fetch("https://registry.npmjs.org/opencode-ai/latest")
.then((res) => {
if (!res.ok) throw new Error(res.statusText)
return res.json()