Skip to content

Commit

Permalink
Fix empty parameter detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Roang-zero1 committed Jun 28, 2022
1 parent ccf6a26 commit eb20595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi
if [ -z "$CHANGELOG_HEADING" ]; then :; else
INPUT_CHANGELOG_HEADING=$CHANGELOG_HEADING
fi
if [ -z "$INPUT_RELEASE_TEXT " ]; then
if [ -n "$INPUT_RELEASE_TEXT " ]; then
PARSE_CHANGELOG=true
else
PARSE_CHANGELOG=false
Expand Down

0 comments on commit eb20595

Please sign in to comment.