From 8bb446df54fceb867ade7d0a7f97cd446163eab6 Mon Sep 17 00:00:00 2001 From: Marc Date: Mon, 2 Jun 2025 17:31:14 +0000 Subject: [PATCH] Added frontend runner --- .ci/deploy.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 .ci/deploy.sh diff --git a/.ci/deploy.sh b/.ci/deploy.sh new file mode 100755 index 000000000..67cbe53b7 --- /dev/null +++ b/.ci/deploy.sh @@ -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!"