From 442135047f03bd08437b9d488ec99be4efb837bf Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sat, 9 Jan 2021 17:41:56 +0100 Subject: [PATCH] Use manual LFS checkout --- .github/workflows/build_windows.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index a2790f05a..23f50d650 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -10,8 +10,9 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v2 - with: - lfs: true + run: | + git lfs version + git lfs pull - name: Build run: | .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Development -buildtargets=FlaxEditor @@ -23,8 +24,9 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v2 - with: - lfs: true + run: | + git lfs version + git lfs pull - name: Build run: | .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Release -buildtargets=FlaxGame