From 783668847328a35665cb8a8d08a2344d4d53c443 Mon Sep 17 00:00:00 2001 From: Refringe Date: Fri, 1 Mar 2024 12:42:25 -0500 Subject: [PATCH] Update build.yaml to clone Server repository and pull Git LFS objects --- .gitea/workflows/build.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a1231e8..0a5a29f 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -14,14 +14,11 @@ jobs: steps: - name: Checkout Server Project - uses: actions/checkout@v3 - with: - repository: 'refringe/Server' - ref: '3.8.0-BE' - fetch-depth: 0 + run: git clone https://dev.sp-tarkov.com/SPT-AKI/Server.git --branch "3.8.0-BE" --depth 1 "./SPT-AKI/Server" - name: Checkout Git LFS Objects run: git lfs pull + working-directory: ./SPT-AKI/Server - name: Setup Node uses: actions/setup-node@v4