Update link branch name

This commit is contained in:
Paul Hatcherian 2020-02-07 22:27:32 -05:00
parent 2b9a4e8857
commit 4f2e9fedc3
2 changed files with 3 additions and 2 deletions

2
dist/index.js vendored
View file

@ -668,7 +668,7 @@ const setOutput = (major, minor, patch, increment, changed, branch) => {
core.info(`Version is ${major}.${minor}.${patch}+${increment}`);
if (repository !== undefined) {
core.info(`To create a release for this version, go to https://github.com/${repository}/releases/new?tag=${tag}&target=${branch.trim()}`);
core.info(`To create a release for this version, go to https://github.com/${repository}/releases/new?tag=${tag}&target=${branch.split('/').reverse()[0]}`);
}
core.setOutput("version", version);
core.setOutput("major", major.toString());