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

Update build.yaml: Decompress client module package and build modules

This commit is contained in:
Refringe 2024-03-03 18:50:55 -05:00
parent 64d22cc8cc
commit 76ad8cc274
No known key found for this signature in database
GPG Key ID: DA8524051241DD36

View File

@ -183,8 +183,7 @@ jobs:
run: | run: |
cd ./modules/project/Shared/Managed cd ./modules/project/Shared/Managed
7z x ${{ steps.extract-client-version.outputs.client_version }}.zip -aoa 7z x ${{ steps.extract-client-version.outputs.client_version }}.zip -aoa
echo "Client module package decompressed." echo "Client module package decompressed.\n\n"
ls -la
shell: bash shell: bash
- name: Delete Client Module Package - name: Delete Client Module Package
@ -194,6 +193,13 @@ jobs:
echo "Client module package deleted." echo "Client module package deleted."
shell: bash shell: bash
- name: Build Modules
run: |
cd ./modules/project
dotnet build
ls -la
shell: bash
build-launcher: build-launcher:
needs: check-tag-exists needs: check-tag-exists
if: needs.check-tag-exists.outputs.proceed == 'true' if: needs.check-tag-exists.outputs.proceed == 'true'