Skip to content

Commit

Permalink
fix: get rid of dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
rdaniels6813 committed Aug 7, 2020
1 parent 6c9285e commit 7879198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
if [ "$PLUGINS" != "" ]; then
npm rebuild -g $PLUGINS
fi
command_response="`semantic-release --dry-run`"
command_response="`semantic-release`"
echo "$command_response"
version=`echo "$command_response" | grep "The next release version is" | rev | cut -d' ' -f1 | rev`
[ ! -z "$version" ] && echo "::set-output name=released-version::v$version"

0 comments on commit 7879198

Please sign in to comment.