From 4b0be2b5f9e81c8975d1dac789cf3fe06c48b838 Mon Sep 17 00:00:00 2001 From: "Christoph K." Date: Tue, 7 Apr 2026 17:00:10 +0200 Subject: [PATCH] Simplify deploy workflow: remove submodule handling Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 3e1370b..f018726 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -12,9 +12,9 @@ jobs: - name: Pull code run: | if [ -d "${{ secrets.DEPLOY_DIR }}/.git" ]; then - git -C ${{ secrets.DEPLOY_DIR }} pull --recurse-submodules + git -C ${{ secrets.DEPLOY_DIR }} pull else - git clone --recurse-submodules http://192.168.1.4:3000/christoph/pamietnik.git ${{ secrets.DEPLOY_DIR }} + git clone http://192.168.1.4:3000/christoph/pamietnik.git ${{ secrets.DEPLOY_DIR }} fi - name: Write .env