Merge pull request #19 from dannysauer/fix_tag_namespace

Add namespace to tag version output
This commit is contained in:
Paul Hatcherian 2021-01-28 17:26:18 -05:00 committed by GitHub
commit 2909e6bd51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,6 +51,10 @@ const setOutput = (major, minor, patch, increment, changed, branch, namespace) =
tag = `${tagPrefix}${major}`;
}
if (namespace !== '') {
tag += `-${namespace}`
}
const repository = process.env.GITHUB_REPOSITORY;
if (!changed) {