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"