From 68ddc1cd657be178bb37ddd861b1023780477369 Mon Sep 17 00:00:00 2001 From: james Hart Date: Mon, 3 Mar 2025 15:26:52 +0000 Subject: [PATCH] another attempt to fix namespace --- .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 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"