Update branch checks to be case-sensitive

Refactor branch checks to be case-sensitive for Engine, Server, and UI.
This commit is contained in:
Hatvani Tamás
2025-11-11 11:27:42 +01:00
committed by GitHub
parent b6f0b6ee5e
commit 0f50f31b13

View File

@@ -26,13 +26,13 @@ jobs:
SERVER=false
UI=false
if [["$BRANCH" == *"Engine"* || "$BRANCH" == *"engine"*]] ; then
if [["$BRANCH" == *"Engine"*]] ; then
ENGINE=true
fi
if [["$BRANCH" == *"Server"* || "$BRANCH" == *"server"*]] ; then
if [["$BRANCH" == *"Server"*]] ; then
SERVER=true
fi
if [["$BRANCH" == *"UI"* || "$BRANCH" == *"ui"*]] ; then
if [["$BRANCH" == *"UI"*]] ; then
UI=true
fi