Skip to content

Commit

Permalink
HEAT-227: Updated pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
KalyanaVadlamani committed Apr 8, 2024
1 parent f0d4cc2 commit b0f10f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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 }}' == 'development' ]; then namespace='dev'; fi
if [ '${{ inputs.environment }}' == 'production' ]; then namespace='prod'; 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"

0 comments on commit b0f10f7

Please sign in to comment.