We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f42100 commit cbd6f0bCopy full SHA for cbd6f0b
1 file changed
action.yml
@@ -76,6 +76,12 @@ runs:
76
exit 1
77
fi
78
79
+ # Validate keystore file actually exists if provided
80
+ if [ -n "${{ inputs.keystore-file }}" ] && [ ! -f "${{ inputs.keystore-file }}" ]; then
81
+ echo "Keystore file '${{ inputs.keystore-file }}' does not exist."
82
+ exit 1
83
+ fi
84
+
85
if [ -z "${{ inputs.keystore-store-file }}" ]; then
86
echo " Input 'keystore-store-file' is required for signed builds."
87
0 commit comments