fix: extend CI health check timeout from 15s to 90s (6 retries × 15s)
This commit is contained in:
@@ -176,12 +176,12 @@ jobs:
|
||||
|
||||
# Wait for container to be healthy
|
||||
echo "Waiting for dev site to be healthy..."
|
||||
for i in {1..30}; do
|
||||
for i in {1..6}; do
|
||||
if curl -sf https://euchre-dev.notsosm.art/api/health > /dev/null 2>&1; then
|
||||
echo "✅ Dev environment successfully deployed with version ${{ steps.version.outputs.new_version }}"
|
||||
exit 0
|
||||
fi
|
||||
sleep 0.5
|
||||
sleep 15
|
||||
done
|
||||
echo "❌ Dev environment deployment failed"
|
||||
docker compose logs app
|
||||
|
||||
Reference in New Issue
Block a user