Files
apix-mvp/.gitea/workflows/deploy.yml
T
Carsten Rehfeld 82f0ac6007
Deploy to Production / deploy (push) Failing after 10s
ops: add CI/CD pipeline, a/b rolling deploy, Gitea Actions workflow
- .gitea/workflows/deploy.yml — push-to-main triggers rolling deploy
- scripts/deploy-bluegreen.sh — a-stack then b-stack restart; Maven runs
  in Docker (no JDK needed on runner host); Caddy reload at end
- scripts/deploy-all.ps1 — emergency manual deploy from dev machine
- infra/docker-compose.yml — a/b pairs per service; wget health checks;
  Gitea service; Prometheus/Grafana/DB ports restricted to localhost
- infra/Caddyfile — dual upstreams with health-based routing
- infra/Dockerfile.* — one per service
- infra/prometheus.yml + grafana provisioning

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-14 14:01:12 +02:00

18 lines
311 B
YAML

name: Deploy to Production
on:
push:
branches: [main]
jobs:
deploy:
runs-on: [self-hosted, host]
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Deploy (rolling zero-downtime)
run: bash scripts/deploy-bluegreen.sh