Skip to content

Commit

Permalink
chores(ci): fix command
Browse files Browse the repository at this point in the history
  • Loading branch information
ido-pluto committed Nov 18, 2023
1 parent 138ef9a commit b5808d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .config/scripts/run-publish-monorepo.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function main() {
for (const packagePath of packagesPathByOrder) {
const packageJsonPath = path.join(packagePath, 'package.json');
await new UpdateMonorepoPackagesVersion(packageJsonPath).updatePackage();
execSync('npm release', {cwd: packagePath, stdio: 'inherit'});
execSync('npm run release', {cwd: packagePath, stdio: 'inherit'});
}
}

Expand Down

0 comments on commit b5808d4

Please sign in to comment.