0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-13 09:50:45 -05:00

Update build.yaml to skip installing dependencies and building server if cache hit

This commit is contained in:
Refringe 2024-03-05 11:37:25 -05:00
parent f6df9e433b
commit 9c61d7e06e
No known key found for this signature in database
GPG Key ID: DA8524051241DD36

View File

@ -105,13 +105,13 @@ jobs:
build-
- name: Install Dependencies
if: steps.build-cache.outputs.cache-hit != 'true'
#if: steps.build-cache.outputs.cache-hit != 'true'
run: |
cd /workspace/refringe/Build/server/project
npm install
- name: Build Server
if: steps.build-cache.outputs.cache-hit != 'true'
#if: steps.build-cache.outputs.cache-hit != 'true'
run: |
cd /workspace/refringe/Build/server/project
BUILD_TYPE="${{ steps.build-type.outputs.build_type }}"