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