refactor: keep provenance on publish

This commit is contained in:
Catriel Müller
2026-02-04 09:22:31 -03:00
parent 179ca8e89c
commit 4298d97a43
+1 -1
View File
@@ -45,7 +45,7 @@ const tasks = Object.entries(binaries).map(async ([name]) => {
await $`npm publish *.tgz --access public --tag ${Script.channel}`.cwd(`./dist/${name}`)
})
await Promise.all(tasks)
await $`cd ./dist/${pkg.name} && bun pm pack && npm publish *.tgz --access public --tag ${Script.channel}`
await $`cd ./dist/${pkg.name} && bun pm pack && npm publish *.tgz --access public --tag ${Script.channel} --provenance`
const image = "ghcr.io/Kilo-Org/kilo"
const platforms = "linux/amd64,linux/arm64"