No match case.

This commit is contained in:
2025-07-11 19:22:40 -07:00
parent 6a5bc92d54
commit 3d50ae6e0c

View File

@@ -50,11 +50,13 @@ runs:
DOWNLOAD_KEYSTORE=${{ inputs.downloadKeystore }}
if [ -z "$DOWNLOAD_KEYSTORE" ]; then
shopt -s nocasematch
if [[ "${{ inputs.platform }}" = "android" ]]; then
DOWNLOAD_KEYSTORE=true
else
DOWNLOAD_KEYSTORE=false
fi
shopt -u nocasematch
fi
echo "downloadKeystore=$DOWNLOAD_KEYSTORE" >> "$GITHUB_OUTPUT"
shell: bash