Skip to content

Commit

Permalink
fix: can not override increment in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Apr 18, 2024
1 parent b97a1c5 commit 7643a0b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,15 @@ class ReleaseItPnpmPlugin extends Plugin {
});
}

getIncrement(options) {
return options.increment;
}

getIncrementedVersionCI(options) {
return this.getRecommendedVersion(options);
}

async getIncrementedVersion(options) {
getIncrementedVersion(options) {
return this.getRecommendedVersion(options);
}

Expand Down

0 comments on commit 7643a0b

Please sign in to comment.