ci: Fix version bump script

This commit is contained in:
Aaron
2026-04-13 00:23:43 -05:00
parent e16052cdc9
commit e1e41c20ea
+1 -1
View File
@@ -37,7 +37,7 @@ if (currentVersion.startsWith('0.')) {
bumpType = 'patch';
}
}
await Bun.$`bun --cwd "${pkgDir}" pm version ${bumpType}`;
await Bun.$`cd "${pkgDir}" && bun pm version ${bumpType}`;
const updatedPkgJson = await Bun.file(pkgJsonPath).json();
const newVersion: string = updatedPkgJson.version;
const newTag = getPkgTag(pkg, newVersion);