From 834d5f821b0fae4de37e633ae8bac666f9d3de6d Mon Sep 17 00:00:00 2001 From: danipatko Date: Sun, 8 Feb 2026 02:56:28 +0100 Subject: [PATCH] . --- .gitea/workflows/deploy-server.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy-server.yaml b/.gitea/workflows/deploy-server.yaml index 5c79545..4ec7029 100644 --- a/.gitea/workflows/deploy-server.yaml +++ b/.gitea/workflows/deploy-server.yaml @@ -38,10 +38,10 @@ jobs: git remote add origin "https://$TOKEN@git.dapa.hu/dapa/assetto.git" # 4. Fetch the specific branch (depth 1 for speed) - git fetch --depth=1 origin main + git fetch --depth=1 origin master # 5. Checkout the branch - git checkout main + git checkout master # 6. Initialize LFS and pull files # Note: If this fails, it confirms the files are missing from the server (see below) @@ -56,7 +56,7 @@ jobs: run: | git lfs install # Try to pull the specific missing files to see the real error message - git lfs fetch origin main + git lfs fetch origin master git lfs checkout # steps: