Skip to content

Commit

Permalink
HEAT-227: Update env-details
Browse files Browse the repository at this point in the history
  • Loading branch information
KalyanaVadlamani committed Apr 3, 2024
1 parent 90409a7 commit cafd57c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/get-env-details/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
id: cloud-platform
shell: bash
run: |
if [ '${{ inputs.environment }}' == 'dev' ]; then namespace='development'; fi
if [ '${{ inputs.environment }}' == 'prod' ]; then namespace='production'; fi
if [ '${{ inputs.environment }}' == 'development' ]; then namespace='development'; fi
if [ '${{ inputs.environment }}' == 'production' ]; then namespace='production'; fi
echo "namespace=${namespace}" | tee -a "$GITHUB_OUTPUT"
echo "values-file=values-${namespace}.yml" | tee -a "$GITHUB_OUTPUT"
echo "values-file=values-${inputs.environment}.yml" | tee -a "$GITHUB_OUTPUT"

0 comments on commit cafd57c

Please sign in to comment.