0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-12 17:30:44 -05:00

Adds debugging information to determine-target-tag step

This commit is contained in:
Refringe 2024-03-29 12:49:29 -04:00
parent bd9926d7e3
commit f57f40e016
Signed by: Refringe
GPG Key ID: 7715B85B4A6306ED

View File

@ -69,7 +69,15 @@ jobs:
BUILD_TYPE="bleedingmods"
else
TARGET_TAG="${{ steps.determine-target-tag.outputs.target_tag }}"
TARGET_TAG_UPPER="${TARGET_TAG^^}"
# Convert tag for consistent matching
TARGET_TAG="${TARGET_TAG##*( )}" # Remove leading whitespace
TARGET_TAG="${TARGET_TAG%%*( )}" # Remove trailing whitespace
TARGET_TAG_UPPER="${TARGET_TAG^^}" # Uppercase
echo "Extended Globbing Support: $(shopt extglob)"
echo "Target tag: '$TARGET_TAG'"
echo "Uppercase target tag: '$TARGET_TAG_UPPER'"
# Debug build by default
# BleedingMods builds have "-BEM" in the target tag