ci: Fix bump-package-version script

This commit is contained in:
Aaron
2026-04-13 00:59:01 -05:00
parent 7d755f215f
commit fddd7c14ee
+4 -1
View File
@@ -107,7 +107,10 @@ if (pkg === 'wxt') {
}
// Commit changes
await Bun.$`git add "${pkgJsonPath}" "${changelogPath}" ${templatePkgJsonPaths.join(' ')}`;
await Bun.$`git add "${pkgJsonPath}" "${changelogPath}"`;
for (const packageJsonPath of templatePkgJsonPaths) {
await Bun.$`git add "${packageJsonPath}"`;
}
await Bun.$`git commit -m "chore(release): ${pkgName} v${newVersion}"`;
await Bun.$`git tag ${newTag}`;
consola.success('Committed version and changelog');