1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
| name: Hetzner Deploy (gluecron.com)
permissions: read-all
on:
workflow_dispatch: {}
concurrency:
group: hetzner-deploy
cancel-in-progress: false
jobs:
deploy:
name: Deploy gluecron.com
runs-on: ubuntu-latest
timeout-minutes: 12
steps:
- uses: actions/checkout@v4
- name: Record start time
id: start
run: |
echo "epoch=$(date +%s)" >> $GITHUB_OUTPUT
- name: Notify deploy started
if: env.DEPLOY_EVENT_TOKEN != ''
env:
DEPLOY_EVENT_TOKEN: ${{ secrets.DEPLOY_EVENT_TOKEN }}
APP_BASE_URL: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
run: |
curl --silent --show-error --max-time 10 \
-X POST "$APP_BASE_URL/api/events/deploy/started" \
-H "authorization: Bearer $DEPLOY_EVENT_TOKEN" \
-H "content-type: application/json" \
--data "{\"sha\":\"${{ github.sha }}\",\"run_id\":\"${{ github.run_id }}\",\"source\":\"hetzner-deploy\"}" \
|| echo "(deploy-started notify failed — continuing)"
- name: Notify step — setup (in_progress)
if: env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: setup
status: in_progress
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Capture pre-deploy SHA
id: prev
uses: appleboy/ssh-action@v1.2.0
with:
host: ${{ secrets.HETZNER_HOST }}
username: ${{ secrets.HETZNER_USER }}
key: ${{ secrets.HETZNER_SSH_KEY }}
script_stop: true
script: |
cd /opt/gluecron
sha=$(git rev-parse HEAD)
echo "Previous SHA: $sha"
echo "$sha" > /tmp/gluecron_prev_sha
cat /tmp/gluecron_prev_sha
- name: Notify step — setup (succeeded)
if: success() && env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: setup
status: succeeded
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Notify step — setup (failed)
if: failure() && env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: setup
status: failed
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Deploy
id: deploy
uses: appleboy/ssh-action@v1.2.0
env:
DEPLOY_EVENT_TOKEN: ${{ secrets.DEPLOY_EVENT_TOKEN }}
APP_BASE_URL: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
GH_RUN_ID: ${{ github.run_id }}
GH_SHA: ${{ github.sha }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
with:
host: ${{ secrets.HETZNER_HOST }}
username: ${{ secrets.HETZNER_USER }}
key: ${{ secrets.HETZNER_SSH_KEY }}
command_timeout: 8m
script_stop: true
envs: GH_TOKEN,GH_REPO,GH_SHA
script: |
set -Eeuxo pipefail
cd /opt/gluecron
echo "=== STEP 1: repair git remote + fetch + reset ==="
git remote set-url origin "https://x-access-token:${GH_TOKEN}@github.com/${GH_REPO}.git"
git fetch --prune origin main
git reset --hard origin/main
new_sha=$(git rev-parse HEAD)
echo "Deployed SHA on box: $new_sha"
echo "=== STEP 2: hand off to scripts/self-deploy.sh (the canonical deploy path) ==="
chmod +x scripts/self-deploy.sh
bash scripts/self-deploy.sh --inline
echo "=== DONE: self-deploy.sh exited cleanly ==="
- name: Notify step — smoke-test (in_progress)
if: env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: smoke-test
status: in_progress
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Smoke test (localhost on the box)
id: smoke
uses: appleboy/ssh-action@v1.2.0
with:
host: ${{ secrets.HETZNER_HOST }}
username: ${{ secrets.HETZNER_USER }}
key: ${{ secrets.HETZNER_SSH_KEY }}
script_stop: true
script: |
# Block N2 — `systemctl restart` already blocked on
# sd_notify(READY=1), so the FIRST curl should succeed. We keep a
# short retry budget for paranoia: a brief delay between
# systemd's READY ack and the HTTP listener becoming routable
# via 127.0.0.1 is theoretically possible (unusual but cheap to
# tolerate). 3 attempts × 2s = 6s ceiling instead of 8 × 6s = 48s.
set +e
for i in 1 2 3; do
code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:3010/healthz)
echo "Attempt $i: /healthz -> $code"
if [ "$code" = "200" ]; then
echo "OK: gluecron is healthy on localhost:3010"
curl -s http://localhost:3010/api/version || true
exit 0
fi
sleep 2
done
echo "FAIL: /healthz did not return 200 after 6s"
systemctl status gluecron --no-pager | head -10 || true
journalctl -u gluecron -n 30 --no-pager || true
exit 1
- name: Notify step — smoke-test (succeeded)
if: success() && env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: smoke-test
status: succeeded
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Notify step — smoke-test (failed)
if: failure() && steps.smoke.conclusion == 'failure' && env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: smoke-test
status: failed
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Notify step — full-smoke (in_progress)
if: env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: full-smoke
status: in_progress
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Full post-deploy smoke suite
id: full_smoke
uses: appleboy/ssh-action@v1.2.0
with:
host: ${{ secrets.HETZNER_HOST }}
username: ${{ secrets.HETZNER_USER }}
key: ${{ secrets.HETZNER_SSH_KEY }}
script_stop: true
script: |
set -e
cd /opt/gluecron
BUN=/root/.bun/bin/bun
export GLUECRON_HOST="http://localhost:3010"
echo "==> running 15-endpoint smoke suite against $GLUECRON_HOST"
# The script exits 1 on endpoint failure, 2 on missing
# migration. We treat both as fatal so the workflow rolls
# back. stdout/stderr stream live to the GH Actions log.
"$BUN" run scripts/post-deploy-smoke.ts
- name: Notify step — full-smoke (succeeded)
if: success() && env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: full-smoke
status: succeeded
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Notify step — full-smoke (failed)
if: failure() && steps.full_smoke.conclusion == 'failure' && env.DEPLOY_EVENT_TOKEN != ''
uses: ./.github/actions/notify-deploy-step
with:
step_name: full-smoke
status: failed
app_base_url: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
deploy_event_token: ${{ secrets.DEPLOY_EVENT_TOKEN }}
- name: Rollback on failure
id: rollback
if: failure() && github.event_name == 'push' && (steps.smoke.conclusion == 'failure' || steps.full_smoke.conclusion == 'failure')
uses: appleboy/ssh-action@v1.2.0
with:
host: ${{ secrets.HETZNER_HOST }}
username: ${{ secrets.HETZNER_USER }}
key: ${{ secrets.HETZNER_SSH_KEY }}
script_stop: false
script: |
cd /opt/gluecron
prev=$(cat /tmp/gluecron_prev_sha 2>/dev/null || true)
if [ -z "$prev" ]; then
echo "ROLLBACK SKIPPED: no /tmp/gluecron_prev_sha — human intervention required"
exit 1
fi
echo "ROLLED BACK to $prev because post-deploy smoke failed"
git reset --hard "$prev"
# Don't re-run migrations here: rolling back schema is
# destructive and migrations are forward-only. We just put
# the code back to where it was and restart. If a migration
# is the reason the new code is incompatible with the old,
# the operator must intervene manually.
BUN=/root/.bun/bin/bun
if [ -f bun.lock ] && [ -d node_modules ]; then
echo "==> reusing existing node_modules (lockfile hash check skipped during rollback)"
else
# Drop `|| true` (AUDIT-v2.md P0 #6): if rollback bun install
# fails, the service must NOT be restarted against half-installed
# node_modules. Fail loudly so the operator can intervene.
"$BUN" install --frozen-lockfile
fi
systemctl restart gluecron
# Verify the rollback target itself comes up green.
sleep 3
for i in 1 2 3; do
code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:3010/healthz)
echo "Rollback healthz attempt $i: $code"
if [ "$code" = "200" ]; then
echo "OK: rolled-back instance is healthy"
exit 0
fi
sleep 2
done
echo "WARN: rollback target ALSO failed /healthz — human intervention required"
systemctl status gluecron --no-pager | head -20 || true
exit 1
- name: Capture failure context
if: failure()
id: ctx
uses: appleboy/ssh-action@v1.2.0
with:
host: ${{ secrets.HETZNER_HOST }}
username: ${{ secrets.HETZNER_USER }}
key: ${{ secrets.HETZNER_SSH_KEY }}
script_stop: false
script: |
echo "===== systemd status ====="
systemctl status gluecron --no-pager 2>&1 | head -40 || true
echo ""
echo "===== last 80 journal lines (gluecron) ====="
journalctl -u gluecron -n 80 --no-pager --output=cat 2>&1 || true
echo ""
echo "===== caddy validate ====="
caddy validate --config /etc/caddy/Caddyfile 2>&1 | head -20 || true
echo ""
echo "===== /healthz from inside box ====="
curl -s -w "\nHTTP %{http_code}\n" http://localhost:3010/healthz 2>&1 || true
echo ""
echo "===== port 3010 listener ====="
# The service runs on 3010 (see line 240, 301, 370). Diagnostics
# were curling 3000 for months, which always failed and made
# every failure dump useless. (AUDIT-v2.md P0 #5.)
ss -tlnp 2>&1 | grep ':3010' || echo '(nothing listening on :3010)'
- name: Post diagnostics to summary
if: failure() && steps.ctx.outputs.stdout != ''
env:
DIAG: ${{ steps.ctx.outputs.stdout }}
run: |
{
echo "## ❌ Deploy failed — diagnostics"
echo ""
echo "**Commit:** \`${GITHUB_SHA:0:7}\` — ${GITHUB_EVENT_HEAD_COMMIT_MESSAGE:-${GITHUB_SHA:0:7}}"
echo "**Run:** [#${GITHUB_RUN_ID}](${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID})"
echo ""
echo '```'
echo "$DIAG"
echo '```'
} >> $GITHUB_STEP_SUMMARY
- name: AI root-cause analysis (Claude)
if: failure() && env.ANTHROPIC_API_KEY != ''
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
DEPLOY_LOGS: ${{ steps.ctx.outputs.stdout }}
COMMIT_SHA: ${{ github.sha }}
COMMIT_MSG: ${{ github.event.head_commit.message }}
run: |
set +e
# Build the prompt. Use python3 to JSON-encode every untrusted input
# (commit message, deploy logs, SHA) so backticks, $(…), quotes, or
# newlines in a commit message cannot break out of the JSON string
# or execute on the runner. The previous unquoted heredoc allowed
# arbitrary command execution via crafted commit messages.
python3 - <<'PY' > /tmp/prompt.json
import json, os
payload = {
"model": "claude-haiku-4-5-20251001",
"max_tokens": 600,
"system": "You are a senior SRE diagnosing a failed deploy. Read the systemd status, journal, and curl output. In 1 short paragraph (under 100 words), identify the most likely root cause and the single fastest fix. Be direct, no preamble.",
"messages": [{
"role": "user",
"content": "Commit: " + os.environ.get("COMMIT_SHA", "") +
"\nMessage: " + os.environ.get("COMMIT_MSG", "") +
"\n\nDeploy logs:\n" + os.environ.get("DEPLOY_LOGS", ""),
}],
}
print(json.dumps(payload))
PY
response=$(curl -s https://api.anthropic.com/v1/messages \
-H "x-api-key: $ANTHROPIC_API_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "content-type: application/json" \
--data @/tmp/prompt.json)
analysis=$(echo "$response" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d.get('content',[{}])[0].get('text','(no analysis)'))" 2>/dev/null)
echo "## 🤖 AI Failure Analysis" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "$analysis" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "**Commit:** \`${COMMIT_SHA:0:7}\` — $COMMIT_MSG" >> $GITHUB_STEP_SUMMARY
- name: Notify webhook
if: always() && env.DEPLOY_WEBHOOK_URL != ''
env:
DEPLOY_WEBHOOK_URL: ${{ secrets.DEPLOY_WEBHOOK_URL }}
STATUS: ${{ job.status }}
run: |
curl -s -X POST "$DEPLOY_WEBHOOK_URL" \
-H "content-type: application/json" \
--data "{\"status\":\"$STATUS\",\"target\":\"gluecron.com\",\"sha\":\"${{ github.sha }}\",\"run\":\"${{ github.run_id }}\"}" || true
- name: Success summary
if: success()
run: |
echo "## ✅ Deploy succeeded" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "- **Target:** https://gluecron.com" >> $GITHUB_STEP_SUMMARY
echo "- **SHA:** \`${GITHUB_SHA:0:7}\`" >> $GITHUB_STEP_SUMMARY
echo "- **Health:** /healthz → 200" >> $GITHUB_STEP_SUMMARY
- name: Notify deploy finished (success)
if: success() && env.DEPLOY_EVENT_TOKEN != ''
env:
DEPLOY_EVENT_TOKEN: ${{ secrets.DEPLOY_EVENT_TOKEN }}
APP_BASE_URL: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
START_EPOCH: ${{ steps.start.outputs.epoch }}
run: |
DUR_MS=$(( ( $(date +%s) - START_EPOCH ) * 1000 ))
curl --silent --show-error --max-time 10 \
-X POST "$APP_BASE_URL/api/events/deploy/finished" \
-H "authorization: Bearer $DEPLOY_EVENT_TOKEN" \
-H "content-type: application/json" \
--data "{\"run_id\":\"${{ github.run_id }}\",\"sha\":\"${{ github.sha }}\",\"status\":\"succeeded\",\"duration_ms\":$DUR_MS}" \
|| echo "(deploy-finished[succeeded] notify failed — continuing)"
- name: Notify deploy finished (failure)
if: failure() && env.DEPLOY_EVENT_TOKEN != ''
env:
DEPLOY_EVENT_TOKEN: ${{ secrets.DEPLOY_EVENT_TOKEN }}
APP_BASE_URL: ${{ secrets.APP_BASE_URL || 'https://gluecron.com' }}
START_EPOCH: ${{ steps.start.outputs.epoch }}
DIAG: ${{ steps.ctx.outputs.stdout }}
ROLLBACK_OUTCOME: ${{ steps.rollback.outcome }}
SMOKE_OUTCOME: ${{ steps.smoke.conclusion }}
FULL_SMOKE_OUTCOME: ${{ steps.full_smoke.conclusion }}
run: |
DUR_MS=$(( ( $(date +%s) - START_EPOCH ) * 1000 ))
# Build a short reason header. S1 (2026-05-14): the deploy-
# finished payload now records WHICH smoke layer failed and
# whether the rollback succeeded, so /admin/deploys shows a
# red pill with the actual cause instead of "deploy failed".
REASON_HEADER=""
if [ "$FULL_SMOKE_OUTCOME" = "failure" ]; then
REASON_HEADER="post-deploy smoke suite failed"
elif [ "$SMOKE_OUTCOME" = "failure" ]; then
REASON_HEADER="/healthz smoke failed"
fi
if [ -n "$ROLLBACK_OUTCOME" ] && [ "$ROLLBACK_OUTCOME" != "skipped" ]; then
if [ "$ROLLBACK_OUTCOME" = "success" ]; then
REASON_HEADER="ROLLED BACK — $REASON_HEADER"
else
REASON_HEADER="ROLLBACK FAILED — $REASON_HEADER — human intervention required"
fi
fi
# First 1 KB of diagnostics — keeps the JSON small and the DB row sane.
ERR_TEXT=$(printf '%s\n\n%s' "${REASON_HEADER:-deploy failed}" "${DIAG:-see workflow logs}" | head -c 1024)
# jq -Rs '.' is the safest way to JSON-escape arbitrary multi-line text.
if command -v jq >/dev/null 2>&1; then
ERR_JSON=$(printf '%s' "$ERR_TEXT" | jq -Rs '.')
else
ERR_JSON=$(printf '%s' "$ERR_TEXT" | python3 -c "import sys,json;print(json.dumps(sys.stdin.read()))")
fi
curl --silent --show-error --max-time 10 \
-X POST "$APP_BASE_URL/api/events/deploy/finished" \
-H "authorization: Bearer $DEPLOY_EVENT_TOKEN" \
-H "content-type: application/json" \
--data "{\"run_id\":\"${{ github.run_id }}\",\"sha\":\"${{ github.sha }}\",\"status\":\"failed\",\"duration_ms\":$DUR_MS,\"error\":$ERR_JSON}" \
|| echo "(deploy-finished[failed] notify failed — continuing)"
|