From ce5a5d72a782f0c31e6de80d17711627d0dcfac8 Mon Sep 17 00:00:00 2001 From: james Hart Date: Mon, 3 Mar 2025 15:30:55 +0000 Subject: [PATCH] single quotes --- .github/actions/get-env-details/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/get-env-details/action.yml b/.github/actions/get-env-details/action.yml index f5a93ac..cbe70a5 100644 --- a/.github/actions/get-env-details/action.yml +++ b/.github/actions/get-env-details/action.yml @@ -23,7 +23,7 @@ runs: id: cloud-platform shell: bash run: | - namespace="{{ inputs.environment }}" + namespace='{{ inputs.environment }}' if [ '${{ inputs.environment }}' == 'development' ]; then namespace='dev'; fi if [ '${{ inputs.environment }}' == 'production' ]; then namespace='prod'; fi echo "namespace=${namespace}" | tee -a "$GITHUB_OUTPUT"