Skip to content

Commit

Permalink
fix(publish): fixlog errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lgaticaq committed Apr 15, 2020
1 parent 540083b commit d76f6a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ module.exports = async (pluginConfig, { nextRelease: { version }, logger }) => {
await publish(`${major}.${minor}.${patch}-${channel}`)
}
} catch (err) {
throw new Error('docker push failed')
logger.error(err)
logger.log('docker push failed')
throw err
}
}

0 comments on commit d76f6a5

Please sign in to comment.