We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0301f09 commit 6443ed2Copy full SHA for 6443ed2
packages/rollout/command.js
@@ -288,17 +288,10 @@ exports.handler = async ({
288
await ConsoleUtilities.step(
289
'Tagging and committing version bump',
290
async () => {
291
- if (conventionalCommits) await updateChangelog(cwd, nextVersion);
292
-
293
- await GitUtilities.addFile(pkgPath);
294
- await GitUtilities.commit(`Publish ${gitTag}`);
295
- },
296
- skipVersion || !conventionalCommits,
297
- );
+ if (conventionalCommits) {
+ await updateChangelog(cwd, nextVersion);
+ }
298
299
- await ConsoleUtilities.step(
300
- 'Tagging and committing version bump',
301
- async () => {
302
if (!skipVersion) {
303
try {
304
await GitUtilities.addFile(changelogPath);
0 commit comments