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

Add client module package decompression and deletion

This commit is contained in:
Refringe 2024-03-03 18:44:40 -05:00
parent 107be5173a
commit 24569f77ad
No known key found for this signature in database
GPG Key ID: DA8524051241DD36

View File

@ -179,6 +179,19 @@ jobs:
env: env:
MODULE_DOMAIN: ${{ secrets.MODULE_DOMAIN }} MODULE_DOMAIN: ${{ secrets.MODULE_DOMAIN }}
- name: Decompress Client Module Package
run: |
cd ./modules/project/Shared/Managed
7z x ${{ steps.extract-client-version.outputs.client_version }}.zip -aoa
shell: bash
- name: Delete Client Module Package
run: |
cd ./modules/project/Shared/Managed
rm -f ${{ steps.extract-client-version.outputs.client_version }}.zip
echo "Client module package deleted."
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'