From d3587e58790a7210ffc65c14e4c919f1b8f1e85d Mon Sep 17 00:00:00 2001 From: Anton Zaslavskii Date: Thu, 9 Jan 2025 16:35:14 +0400 Subject: [PATCH] Add missing env subst in gcr-auth (#100) --- src/scripts/gcr-auth.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/scripts/gcr-auth.sh b/src/scripts/gcr-auth.sh index 187c520..dea1460 100644 --- a/src/scripts/gcr-auth.sh +++ b/src/scripts/gcr-auth.sh @@ -1,5 +1,7 @@ #!/usr/bin/env bash +ORB_VAL_REGISTRY_URL="$(circleci env subst "$ORB_VAL_REGISTRY_URL")" + unameOut="$(uname -s)" case "${unameOut}" in Linux*) platform=linux;;