Some checks failed
Test Suite / playwright-tests (push) Waiting to run
Deploy Development / deploy (push) Failing after 0s
Test Suite / pytest-backend (push) Failing after 5m1s
Test Suite / lint-backend (push) Failing after 0s
Test Suite / build-frontend (push) Successful in 0s
Test Suite / k6 /api/health Baseline (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
937 B
YAML
28 lines
937 B
YAML
name: Deploy Production
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Deploy to Production
|
|
run: |
|
|
set -e
|
|
echo "=== Deploying Kairo to PRODUCTION ==="
|
|
cd /home/lars/docker/kairo
|
|
git fetch origin main || git clone http://192.168.2.144:3000/Lars/Kairo-Jinkendo.git .
|
|
git reset --hard origin/main
|
|
docker compose build --no-cache
|
|
docker compose up -d
|
|
sleep 5
|
|
curl -sf http://localhost:8004/api/health && echo "✓ PROD API (direkt) /api/health OK"
|
|
if docker compose ps --status running 2>/dev/null | grep -q frontend; then
|
|
curl -sf http://localhost:3004/api/health && echo "✓ PROD über Frontend-Nginx healthy"
|
|
else
|
|
echo "(Frontend-Check übersprungen — optional in AP0.1)"
|
|
fi
|
|
echo "=== Kairo PROD Deploy complete ==="
|