From 617e25eb4c9147f05b26ebe306cdbbccbb2e036f Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Fri, 8 Jan 2021 23:08:51 +0100 Subject: [PATCH] Add lfs t repo clone --- .github/workflows/build_windows.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index da8866b70..a2790f05a 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -8,7 +8,10 @@ jobs: name: Editor (Windows, Development x64) runs-on: "windows-latest" steps: - - uses: actions/checkout@v2 + - name: Checkout repo + uses: actions/checkout@v2 + with: + lfs: true - name: Build run: | .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Development -buildtargets=FlaxEditor @@ -18,7 +21,10 @@ jobs: name: Game (Windows, Release x64) runs-on: "windows-latest" steps: - - uses: actions/checkout@v2 + - name: Checkout repo + uses: actions/checkout@v2 + with: + lfs: true - name: Build run: | .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Release -buildtargets=FlaxGame