Skip to content

Commit

Permalink
fix: add channel to publish success log
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdlg committed Nov 27, 2019
1 parent 1275b8c commit 5744c5e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
Expand Up @@ -185,7 +185,9 @@ async function run(context, plugins) {

await plugins.success({...context, releases});

logger.success(`Published release ${nextRelease.version}`);
logger.success(
`Published release ${nextRelease.version} on ${nextRelease.channel ? nextRelease.channel : 'default'} channel`
);

if (options.dryRun) {
logger.log(`Release note for version ${nextRelease.version}:`);
Expand Down

0 comments on commit 5744c5e

Please sign in to comment.