From 1dca52d3ef4133ab6ca44488447f4c3e837305d7 Mon Sep 17 00:00:00 2001 From: james Hart Date: Mon, 3 Mar 2025 15:46:01 +0000 Subject: [PATCH] add the dollar sign (oops) --- .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 cbe70a5..6b51ec3 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"