From 3a9d4271bf95a16b65a1287b83aca7c4726df5bd Mon Sep 17 00:00:00 2001 From: pragmaxim Date: Mon, 16 Mar 2026 08:42:49 +0100 Subject: [PATCH] fix: lower case coin alias in BB_RUNNER_ variables --- .github/scripts/prepare_deploy_plan.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/scripts/prepare_deploy_plan.py b/.github/scripts/prepare_deploy_plan.py index ebf79b92..4ab550d7 100755 --- a/.github/scripts/prepare_deploy_plan.py +++ b/.github/scripts/prepare_deploy_plan.py @@ -26,7 +26,7 @@ def load_runner_map(vars_map: dict) -> dict: for key, value in vars_map.items(): if not key.startswith(prefix): continue - coin = key[len(prefix):].strip() + coin = key[len(prefix):].strip().lower() runner = "" if value is None else str(value).strip() if coin and runner: mapping[coin] = runner @@ -53,6 +53,7 @@ def parse_requested_coins(raw: str, available: dict) -> list[str]: seen = set() result = [] for coin in tokens: + coin = coin.lower() if coin in seen: continue seen.add(coin)