We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f63ddda commit 5ae5fccCopy full SHA for 5ae5fcc
.github/workflows/00-deployment-verification.yml
@@ -51,7 +51,7 @@ jobs:
51
- name: Wait for the Traefik dashboard to be ready
52
run: |
53
echo "Checking the routing and availability of the Traefik dashboard..."
54
- timeout 5m bash -c 'while ! curl -fsSLk "https://$APP_TRAEFIK_HOSTNAME"; do \
+ timeout 5m bash -c 'while ! curl -fsSLk --write-out "%{http_code}" --output /dev/null "https://$APP_TRAEFIK_HOSTNAME" | grep -E "200|401"; do \
55
echo "Waiting for the application to be ready..."; \
56
sleep 10; \
57
done'
0 commit comments