diff --git a/.github/actions/get-env-details/action.yml b/.github/actions/get-env-details/action.yml index c6e13bb..f5a93ac 100644 --- a/.github/actions/get-env-details/action.yml +++ b/.github/actions/get-env-details/action.yml @@ -24,7 +24,7 @@ runs: shell: bash run: | namespace="{{ inputs.environment }}" - if [ '${{ inputs.environment }}' == 'development' or ]; then namespace='dev'; fi + if [ '${{ inputs.environment }}' == 'development' ]; then namespace='dev'; fi if [ '${{ inputs.environment }}' == 'production' ]; then namespace='prod'; fi echo "namespace=${namespace}" | tee -a "$GITHUB_OUTPUT" echo "values-file=values-${namespace}.yaml" | tee -a "$GITHUB_OUTPUT"