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:
122
122
[[ -n "$ERROR_MESSAGE" ]] && echo "Error message: $ERROR_MESSAGE"
123
123
124
124
case $BUILD_STATUS in
125
- "finished ")
125
+ "FINISHED ")
126
126
APK_URL=$(echo "$BUILD_STATUS_JSON" | jq -r '.artifacts.buildUrl')
127
127
if [[ -z "$APK_URL" || "$APK_URL" == "null" ]]; then
128
128
echo "Error: Successful build but no APK URL found!"
@@ -132,7 +132,7 @@ jobs:
132
132
exit 0
133
133
;;
134
134
135
- "errored "|"canceled ")
135
+ "ERRORED "|"CANCELLED ")
136
136
if [[ "$BUILD_STATUS" == "canceled" ]]; then
137
137
echo "Build was canceled! Details:"
138
138
else
@@ -142,7 +142,7 @@ jobs:
142
142
exit 1
143
143
;;
144
144
145
- "new "|"in_queue "|"in_progress "|"pending ")
145
+ "NEW "|"IN_QUE "|"IN_PROGRESS "|"PENDING ")
146
146
echo "Build is still in progress..."
147
147
;;
148
148
You can’t perform that action at this time.
0 commit comments