Skip to content

Commit 038bb04

Browse files
2 parents 37f207b + baa3e25 commit 038bb04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/eas-android-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
[[ -n "$ERROR_MESSAGE" ]] && echo "Error message: $ERROR_MESSAGE"
123123
124124
case $BUILD_STATUS in
125-
"finished")
125+
"FINISHED")
126126
APK_URL=$(echo "$BUILD_STATUS_JSON" | jq -r '.artifacts.buildUrl')
127127
if [[ -z "$APK_URL" || "$APK_URL" == "null" ]]; then
128128
echo "Error: Successful build but no APK URL found!"
@@ -132,7 +132,7 @@ jobs:
132132
exit 0
133133
;;
134134
135-
"errored"|"canceled")
135+
"ERRORED"|"CANCELLED")
136136
if [[ "$BUILD_STATUS" == "canceled" ]]; then
137137
echo "Build was canceled! Details:"
138138
else
@@ -142,7 +142,7 @@ jobs:
142142
exit 1
143143
;;
144144
145-
"new"|"in_queue"|"in_progress"|"pending")
145+
"NEW"|"IN_QUE"|"IN_PROGRESS"|"PENDING")
146146
echo "Build is still in progress..."
147147
;;
148148

0 commit comments

Comments
 (0)