Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-Holbrook committed Jan 29, 2025
1 parent 6499ff2 commit cf15be5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ReleaseCreator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ export class ReleaseCreator {

logger.log(`Create commit with version increment`);
await this.incrementedVersion(options.releaseType as ReleaseType);
utils.executeCommand(`git add package.json package-lock.json`);
utils.executeCommand(`git commit -m 'Increment version to ${releaseVersion}'`);
utils.executeCommandWithOutput(`git status`);
utils.executeCommandWithOutput(`git add package.json package-lock.json`);
utils.executeCommandWithOutput(`git commit -m 'Increment version to ${releaseVersion}'`);

logger.log(`Push up the release branch`);
utils.executeCommand(`git push origin release/${releaseVersion}`);
Expand Down

0 comments on commit cf15be5

Please sign in to comment.