1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Temp fix to create-release-pr script

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-02-23 11:17:22 -05:00
parent f2d6de6623
commit 51a1a0c8fb

View File

@ -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()}"`);