File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments