Skip to content
This repository was archived by the owner on Jun 14, 2025. It is now read-only.

Commit 8a3afc2

Browse files
committed
fix github actions: typo in health check step causing workflow to fail
1 parent c857b80 commit 8a3afc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
for i in {1..5}; do
122122
RESPONSE=$(curl -s "${DEPLOY_URL}/api/health" || echo "failed")
123123
124-
if echo "$RESPONSE" | grep -q '"status":"ok"'; then
124+
if echo "$RESPONSE" | grep -q '"status":"OK"'; then
125125
echo "✅ Health check passed on attempt $i"
126126
echo "📋 Response: $RESPONSE"
127127
break

0 commit comments

Comments
 (0)