curl 오타 수정
All checks were successful
Run Report Table / run-script (push) Successful in 22s
API Health Check / health-check (push) Successful in 3s

This commit is contained in:
kyy
2025-10-10 14:01:33 +09:00
parent 3e03c4d065
commit 01bc859f44

View File

@@ -12,7 +12,7 @@ jobs:
run: |
success=false
for i in $(seq 1 5); do
response=$(curl -s -o /dev/null -w "%{\http_code}" http://172.16.10.176:8888/health/API)
response=$(curl -s -o /dev/null -w "%{http_code}" http://172.16.10.176:8888/health/API)
content=$(curl -s http://172.16.10.176:8888/health/API)
if [ "$response" -eq 200 ] && echo "$content" | grep -q "ok"; then