Add namespace to tag version output

This commit is contained in:
Danny Sauer 2021-01-28 15:30:18 -06:00
parent 12cce3bff2
commit 63597febc6
No known key found for this signature in database
GPG key ID: B84CCF5DF028A5A7

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) {