This commit is contained in:
2026-02-08 02:56:28 +01:00
parent 8cce7b6bb2
commit 834d5f821b

View File

@@ -38,10 +38,10 @@ jobs:
git remote add origin "https://$TOKEN@git.dapa.hu/dapa/assetto.git" git remote add origin "https://$TOKEN@git.dapa.hu/dapa/assetto.git"
# 4. Fetch the specific branch (depth 1 for speed) # 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 # 5. Checkout the branch
git checkout main git checkout master
# 6. Initialize LFS and pull files # 6. Initialize LFS and pull files
# Note: If this fails, it confirms the files are missing from the server (see below) # Note: If this fails, it confirms the files are missing from the server (see below)
@@ -56,7 +56,7 @@ jobs:
run: | run: |
git lfs install git lfs install
# Try to pull the specific missing files to see the real error message # 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 git lfs checkout
# steps: # steps: