diff --git a/packages/release-tool/src/index.ts b/packages/release-tool/src/index.ts index b4ab277544..ec75f5e6d2 100755 --- a/packages/release-tool/src/index.ts +++ b/packages/release-tool/src/index.ts @@ -92,7 +92,7 @@ const newVersion = currentVersion.inc(options.type, options.preid); const newVersionMilestone = `${newVersion.major}.${newVersion.minor}.${newVersion.patch}`; const prBranch = `release/v${newVersion.format()}`; -await exec(`yarn run bump-version --yes ${newVersion.format()}`); +await exec(`yarn run bump-version --yes ${newVersion.format()} --force-publish`); await exec(`git checkout -b ${prBranch}`); await exec("git add lerna.json packages/*/package.json"); await exec(`git commit -sm "Release ${newVersion.format()}"`);