Skip to content

Commit

Permalink
chore: update release script to bump packages commit conventionally (#…
Browse files Browse the repository at this point in the history
…6524)

update release script to commit conventionally
  • Loading branch information
philknows committed Mar 8, 2024
1 parent cae26be commit 4857f43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/create_rc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ shell(`git checkout -b ${rcBranchName} ${commit}`);
shell(`lerna version ${packageVersion} --no-git-tag-version --force-publish --yes`);

// Commit changes
shell(`git commit -am "v${versionMMP}"`);
shell(`git commit -am "chore: v${versionMMP}"`);

// Push branch, specifying upstream
shell(`git push ${GIT_REPO_URL} ${rcBranchName}`);
Expand Down

0 comments on commit 4857f43

Please sign in to comment.