Added frontend runner
Some checks are pending
Deploy Volleyball CMS / deploy (push) Waiting to run

This commit is contained in:
Marc 2025-06-02 17:31:14 +00:00
parent 8f62885a45
commit 8bb446df54

17
.ci/deploy.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
set -e
echo "[CI] Starte Deploy-Prozess für Volleyball CMS..."
cd ..
cd backend
git pull origin main
cd ../frontend
git pull origin main
cd ..
docker-compose down
docker-compose up --build -d
echo "[CI] ✅ Deployment abgeschlossen!"