This commit is contained in:
Dax Raad
2025-10-28 20:35:18 -04:00
parent 09e7e0ab70
commit cd79676b42
2 changed files with 6 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ await $`cd ./dist/${pkg.name} && bun publish --access public --tag ${Script.chan
if (!Script.preview) {
const major = Script.version.split(".")[0]
const majorTag = `v${major}`
const majorTag = `latest-${major}`
for (const [name] of Object.entries(binaries)) {
await $`cd dist/${name} && npm dist-tag add ${name}@${Script.version} ${majorTag}`
}