Skip to content

Commit

Permalink
build: add missing command in bump version script
Browse files Browse the repository at this point in the history
  • Loading branch information
Tr00d committed Mar 7, 2024
1 parent b1dcd1a commit f920c2d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bump_version.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class VersionUpgrade {
this._executeCommandWithArgs(`git`, ["commit", "-m", `'docs: bump version to ${this.tag}'`]);
this._executeCommand(`git tag -f ${this.tag}`);
this._executeCommand(`git cliff -o CHANGELOG.md`);
this._executeCommand(`git add CHANGELOG.md`);
this._executeCommandWithArgs(`git`, ["commit", "-m", `'docs: generate changelog for ${this.tag}'`]);
this._executeCommand(`git push`);
this._executeCommand(`git push origin ${this.tag} --force`);
Expand Down

0 comments on commit f920c2d

Please # to comment.