From 398a5bf7fff569265fce825da276a6038f8c268b Mon Sep 17 00:00:00 2001 From: Jordan Ho Date: Fri, 20 Feb 2026 13:49:51 -0500 Subject: [PATCH] fix: change gcloud orb region and zone cmds --- gcloud/orb.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/gcloud/orb.yaml b/gcloud/orb.yaml index 4bb1202..b6a827e 100644 --- a/gcloud/orb.yaml +++ b/gcloud/orb.yaml @@ -26,6 +26,10 @@ commands: default: "" description: The Google project ID to connect with via the gcloud CLI. type: string + region: + default: "" + description: The Google region to use via the gcloud CLI. + type: string zone: default: "" description: The Google zone to use via the gcloud CLI. @@ -37,10 +41,14 @@ commands: condition: <> steps: - run: gcloud --quiet config set project "<>" + - when: + condition: <> + steps: + - run: gcloud --quiet config set compute/region "<>" - when: condition: <> steps: - - run: gcloud --quiet config set zone "<>" + - run: gcloud --quiet config set compute/zone "<>" configure-docker: description: >