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

Add client version extraction step to build workflow

This commit is contained in:
Refringe 2024-03-03 13:21:07 -05:00
parent b15f5f5c7a
commit 530edfff0d
No known key found for this signature in database
GPG Key ID: 64E03E5F892C6F9E

View File

@ -148,6 +148,14 @@ jobs:
ls -la
shell: bash
- name: Extract Client Version
run: |
cd ./server-core/project/assets/configs
CLIENT_VERSION=$(jq -r '.compatibleTarkovVersion' core.json)
echo "Client Version: $CLIENT_VERSION"
echo "::set-output name=client_version::$CLIENT_VERSION"
shell: bash
build-launcher:
needs: check-tag-exists
if: needs.check-tag-exists.outputs.proceed == 'true'