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"