Skip to content

Commit

Permalink
Fix release draft task
Browse files Browse the repository at this point in the history
  • Loading branch information
itaisteinherz committed Apr 18, 2019
1 parent ce7e550 commit fed7766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/index.js
Expand Up @@ -227,7 +227,7 @@ module.exports = async (input = 'patch', options) => {
tasks.add({
title: 'Creating release draft on GitHub',
enabled: () => isOnGitHub === true,
skip: () => options.releaseDraft,
skip: () => !options.releaseDraft,
task: () => releaseTaskHelper(options)
});

Expand Down

0 comments on commit fed7766

Please sign in to comment.