Skip to content

Commit 293fe5f

Browse files
committed
explicitly check for true in local_version check
1 parent b9fb1e6 commit 293fe5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fi
5959
if [[ $INPUT_DEVRELEASE ]]; then
6060
CZ_CMD+=('--devrelease' "$INPUT_DEVRELEASE")
6161
fi
62-
if [[ $INPUT_LOCAL_VERSION ]]; then
62+
if [[ $INPUT_LOCAL_VERSION == 'true' ]]; then
6363
CZ_CMD+=('--local_version')
6464
fi
6565
if [[ $INPUT_COMMIT == 'false' ]]; then

0 commit comments

Comments
 (0)