From 148e663adf97a60dabc226a4dffbf78e2d3703b1 Mon Sep 17 00:00:00 2001 From: Cory Petkovsek <632766+TokisanGames@users.noreply.github.com> Date: Wed, 6 Dec 2023 17:12:56 +0700 Subject: [PATCH] Add git lfs pull to action --- .github/workflows/android.yml | 1 + .github/workflows/build.yml | 1 + .github/workflows/linux.yml | 1 + .github/workflows/macos.yml | 1 + .github/workflows/windows.yml | 1 + 5 files changed, 5 insertions(+) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 9348b351a..0aa4994dd 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -25,6 +25,7 @@ jobs: uses: actions/checkout@v4 with: submodules: recursive + lfs: true - name: Setup Android Dependencies if: startsWith(matrix.identifier, 'android-') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a713ba046..9048aa503 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,6 +72,7 @@ jobs: uses: actions/checkout@v4 with: submodules: recursive + lfs: true - name: Setup Windows Dependencies if: startsWith(matrix.identifier, 'windows-') diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6ceca302c..ad9880ad2 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -25,6 +25,7 @@ jobs: uses: actions/checkout@v4 with: submodules: recursive + lfs: true - name: Setup Base Dependencies uses: ./.github/actions/base-deps diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 62efc0ba9..c411272bb 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -23,6 +23,7 @@ jobs: uses: actions/checkout@v4 with: submodules: recursive + lfs: true - name: Setup Base Dependencies uses: ./.github/actions/base-deps diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d73c62b58..b83b36be8 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -25,6 +25,7 @@ jobs: uses: actions/checkout@v4 with: submodules: recursive + lfs: true - name: Setup Windows Dependencies uses: ./.github/actions/windows-deps