fix: remove confusing logs when searching for releases to add to a channel

This commit is contained in:
Pierre Vanduynslager
2018-12-17 15:23:04 -05:00
parent 9a04e64fab
commit 162b4b9e3b
4 changed files with 11 additions and 28 deletions
+10
View File
@@ -127,6 +127,16 @@ async function run(context, plugins) {
context.lastRelease = await getLastRelease(context);
if (context.lastRelease.gitTag) {
logger.log(
`Found git tag ${context.lastRelease.gitTag} associated with version ${context.lastRelease.version} on branch ${
context.branch.name
}`
);
} else {
logger.log(`No git tag version found on branch ${context.branch.name}`);
}
context.commits = await getCommits(context);
const nextRelease = {