fix: correct dev health URL to git.dev.mokoconsulting.tech #695

Merged
jmiller merged 1 commits from fix/dev-deploy-hostname into main 2026-06-23 23:08:24 +00:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -106,4 +106,4 @@ jobs:
- name: Verify dev instance
run: |
sleep 5
curl -sf https://dev.git.mokoconsulting.tech/api/healthz && echo " Dev API healthy"
curl -sf https://git.dev.mokoconsulting.tech/api/healthz && echo " Dev API healthy"
+2 -2
View File
@@ -42,8 +42,8 @@ jobs:
steps:
- name: Check dev health
run: |
echo "Checking dev.git.mokoconsulting.tech health..."
if curl -sf --max-time 10 https://dev.git.mokoconsulting.tech/api/healthz; then
echo "Checking git.dev.mokoconsulting.tech health..."
if curl -sf --max-time 10 https://git.dev.mokoconsulting.tech/api/healthz; then
echo " Dev environment is healthy — proceeding with production deploy"
else
echo "::error::Dev environment is NOT healthy — blocking production deploy"