You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/deploys/check_build_status_gh
+15-14Lines changed: 15 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ fi
17
17
if [ "$PLATFORM"="ios" ];then
18
18
WORKFLOW_NAMES=("Build and Deploy iOS to TestFligh""Build and Deploy iOS to Firebase")
19
19
elif [ "$PLATFORM"="android" ];then
20
-
WORKFLOW_NAMES=("Build and Deploy Android to Play Store""Build and Deploy Android to Firebase")
20
+
WORKFLOW_NAMES=("Build and Deploy Android to Firebase Blacksmith Paid 2 cores""Build and Deploy Android to Firebase Blacksmith Paid 4 cores""Build and Deploy Android to Firebase Blacksmith Paid 8 cores")
21
21
else
22
22
echo"Unsupported platform: $PLATFORM. Supported platforms are ios and android."
23
23
exit 1
@@ -38,29 +38,30 @@ total_running_runs=0
38
38
forWORKFLOW_NAMEin"${WORKFLOW_NAMES[@]}";do
39
39
echo"Checking workflow: $WORKFLOW_NAME"
40
40
41
-
# Get the workflow ID first
42
-
workflow_id=$(curl -s \
41
+
# Get the workflow ID(s) — multiple workflows can share the same name (e.g. stale renamed workflows)
0 commit comments