Skip to content

Commit

Permalink
Update :: to =
Browse files Browse the repository at this point in the history
  • Loading branch information
sshrihar committed Apr 19, 2024
1 parent 917d8a9 commit 0a5c54e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/re_use_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
run: |
if [ "${{ inputs.environment }}" == "dev" ]; then
echo "ACCOUNT_NUMBER=${{ secrets.DEV_ACCOUNT_NUMBER }}" >> $GITHUB_OUTPUT
echo "APP_NAME::${{ inputs.core_app }}-dev" >> $GITHUB_OUTPUT
echo "APP_NAME=${{ inputs.core_app }}-dev" >> $GITHUB_OUTPUT
elif [ "${{ inputs.environment }}" == "staging" ]; then
echo "ACCOUNT_NUMBER::${{ secrets.STAGING_ACCOUNT_NUMBER }}" >> $GITHUB_OUTPUT
echo "APP_NAME::${{ inputs.core_app }}-staging" >> $GITHUB_OUTPUT
echo "ACCOUNT_NUMBER=${{ secrets.STAGING_ACCOUNT_NUMBER }}" >> $GITHUB_OUTPUT
echo "APP_NAME=${{ inputs.core_app }}-staging" >> $GITHUB_OUTPUT
elif [ "${{ inputs.environment }}" == "prod" ]; then
echo "ACCOUNT_NUMBER::${{ secrets.PROD_ACCOUNT_NUMBER }}" >> $GITHUB_OUTPUT
echo "APP_NAME::${{ inputs.core_app }}" >> $GITHUB_OUTPUT
echo "ACCOUNT_NUMBER=${{ secrets.PROD_ACCOUNT_NUMBER }}" >> $GITHUB_OUTPUT
echo "APP_NAME=${{ inputs.core_app }}" >> $GITHUB_OUTPUT
fi
deploy:
Expand Down

0 comments on commit 0a5c54e

Please sign in to comment.