We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48f23e4 commit aa8bb70Copy full SHA for aa8bb70
1 file changed
.github/workflows/api.yml
@@ -101,7 +101,8 @@ jobs:
101
echo "Polling Cloud Build Status..."
102
while true; do
103
STATUS=$(gcloud builds describe "$BUILD_ID" --region=global --project=httpsms-86c51 --format="value(status)")
104
- echo -e " \033[90m$(date -u '+%Y-%m-%d %H:%M:%S UTC')\033[0m status=\"$STATUS\""
+ LOCAL_TIME=$(date -u '+%Y-%m-%d %H:%M:%S UTC')
105
+ echo -e " \033[90m${LOCAL_TIME}\033[0m status=\033[36m${STATUS}\033[0m"
106
case "$STATUS" in
107
SUCCESS) echo -e "\033[32mBuild succeeded!\033[0m"; exit 0 ;;
108
FAILURE|TIMEOUT|CANCELLED|EXPIRED|INTERNAL_ERROR) echo -e "\033[31mBuild failed with status: $STATUS\033[0m"; exit 1 ;;
0 commit comments