From ebf60d4ce6f525b3b48a269ea9b1215361b37195 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 3 Jul 2026 18:11:10 +0800 Subject: [PATCH] Fix: Remove lfs option from checkout and use manual Git LFS setup --- .github/workflows/build-debug.yml | 12 +++++++++--- .github/workflows/build.yml | 12 +++++++++--- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index abf8b23..8a2f96a 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -22,10 +22,11 @@ jobs: with: submodules: recursive fetch-depth: 0 - lfs: true - - name: Git LFS Pull - run: git lfs pull + - name: Setup Git LFS + run: | + git lfs install + git lfs pull - name: Set up JDK 17 uses: actions/setup-java@v4 @@ -76,6 +77,11 @@ jobs: submodules: recursive fetch-depth: 0 + - name: Setup Git LFS + run: | + git lfs install + git lfs pull + - name: Verify Libbox framework before build run: | echo "========================================" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 78bfcb8..4e9c694 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,6 +57,11 @@ jobs: submodules: recursive fetch-depth: 0 + - name: Setup Git LFS + run: | + git lfs install + git lfs pull + - name: Set up JDK 11 uses: actions/setup-java@v4 with: @@ -162,10 +167,11 @@ jobs: with: submodules: recursive fetch-depth: 0 - lfs: true - - name: Git LFS Pull - run: git lfs pull + - name: Setup Git LFS + run: | + git lfs install + git lfs pull - name: Setup Xcode uses: maxim-lobanov/setup-xcode@v1