From e49d2ca2fc65ffdf78f06290e5deeae2176d7018 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 29 Feb 2024 21:58:10 -0500 Subject: [PATCH] Build Testing --- .gitea/workflows/build.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index e06a34d..a0e5df3 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -11,25 +11,27 @@ jobs: runs-on: ubuntu-latest steps: - - name: Check-out Build Project + - name: Check-out Server Project uses: actions/checkout@v4 with: + repository: 'https://dev.sp-tarkov.com/SPT-AKI/Server.git' fetch-depth: 0 + lfs: true - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '18.15.0' - - name: Install Node dependencies + - name: Install dependencies run: npm install working-directory: ./project - - name: Build Server Project + - name: Build Project run: npm run build working-directory: ./project - - name: Archive Server Build + - name: Archive Build uses: actions/upload-artifact@v4 with: name: built-artifacts