From 4419e8972f18808644f340c35bb0c5fcbcd652de Mon Sep 17 00:00:00 2001 From: Benjamin Date: Tue, 9 Jun 2026 11:25:16 +0200 Subject: [PATCH] Update Staging Deploy --- .gitea/workflows/deploy-staging.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-staging.yml b/.gitea/workflows/deploy-staging.yml index c21b88e..9802311 100644 --- a/.gitea/workflows/deploy-staging.yml +++ b/.gitea/workflows/deploy-staging.yml @@ -9,12 +9,16 @@ jobs: runs-on: self-hosted steps: + - name: Configure Git credentials + run: | + git config --global credential.helper store + echo "https://staging-runner:${{ env.GITEA_TOKEN }}@code.romhackplaza.org" \ + > /root/.git-credentials + - name: Mark Git Folder as safe run: git config --global --add safe.directory /deploy/laravel - name: Code pull - env: - GIT_SSH_COMMAND: "ssh -vv -o StrictHostKeyChecking=no -i /root/.ssh/id_ed25519" run: git -C /deploy/laravel pull origin staging - name: Composer Dependencies