Skip to content

Commit

Permalink
Merge pull request #24 from michmich112/develop
Browse files Browse the repository at this point in the history
HotFix Tag Bug
  • Loading branch information
michmich112 authored Apr 2, 2021
2 parents 6b453c9 + 22f5410 commit e60707a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function main() {
userName: 'version-bumper',
userEmail: 'bumper@boringday.co',
message: `Updated version ${state.curVersion} -> ${state.newVersion}.`,
tag: !state.tag ? { name: state.newVersion } : undefined,
tag: state.tag ? { name: state.newVersion } : undefined,
token: core.getInput('github-token'),
branch: state.branch
};
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function main() {
userName: 'version-bumper',
userEmail: 'bumper@boringday.co',
message: `Updated version ${state.curVersion} -> ${state.newVersion}.`,
tag: !state.tag ? { name: state.newVersion } : undefined,
tag: state.tag ? { name: state.newVersion } : undefined,
token: core.getInput('github-token'),
branch: state.branch
};
Expand Down

0 comments on commit e60707a

Please sign in to comment.