fix: move build step to workflow to avoid PATH issues

This commit is contained in:
YeonGyu-Kim
2025-12-05 02:58:27 +09:00
parent a3cea59001
commit 41918af852
2 changed files with 4 additions and 4 deletions

View File

@@ -62,9 +62,6 @@ async function generateChangelog(previous: string): Promise<string> {
}
async function buildAndPublish(): Promise<void> {
console.log("Building...")
await $`bun run build`
console.log("\nPublishing to npm...")
if (process.env.CI) {
await $`npm publish --access public --provenance`