Skip to content

Commit

Permalink
another attempt to fix namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
james-jdgtl committed Mar 3, 2025
1 parent 09513b4 commit 68ddc1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/get-env-details/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 68ddc1c

Please sign in to comment.