We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 37f207b + baa3e25 commit 038bb04Copy full SHA for 038bb04
1 file changed
.github/workflows/eas-android-build.yml
@@ -122,7 +122,7 @@ jobs:
122
[[ -n "$ERROR_MESSAGE" ]] && echo "Error message: $ERROR_MESSAGE"
123
124
case $BUILD_STATUS in
125
- "finished")
+ "FINISHED")
126
APK_URL=$(echo "$BUILD_STATUS_JSON" | jq -r '.artifacts.buildUrl')
127
if [[ -z "$APK_URL" || "$APK_URL" == "null" ]]; then
128
echo "Error: Successful build but no APK URL found!"
@@ -132,7 +132,7 @@ jobs:
132
exit 0
133
;;
134
135
- "errored"|"canceled")
+ "ERRORED"|"CANCELLED")
136
if [[ "$BUILD_STATUS" == "canceled" ]]; then
137
echo "Build was canceled! Details:"
138
else
@@ -142,7 +142,7 @@ jobs:
142
exit 1
143
144
145
- "new"|"in_queue"|"in_progress"|"pending")
+ "NEW"|"IN_QUE"|"IN_PROGRESS"|"PENDING")
146
echo "Build is still in progress..."
147
148
0 commit comments