Skip to content

Commit 4b3778d

Browse files
author
Somnath Mukherjee
committed
added echo 3
1 parent d59cf8d commit 4b3778d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/cd.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ jobs:
6969
uat) echo "ACCOUNT_ID=${{ secrets.AWS_ACCOUNT_ID_UAT }}" >> $GITHUB_ENV ;;
7070
prod) echo "ACCOUNT_ID=${{ secrets.AWS_ACCOUNT_ID_PROD }}" >> $GITHUB_ENV ;;
7171
esac
72-
echo "Account ID - ${{ env.ACCOUNT_ID }}"
7372
7473
- name: Configure AWS credentials using OIDC token
7574
uses: aws-actions/configure-aws-credentials@v4
@@ -79,7 +78,9 @@ jobs:
7978
aws-region: ${{ env.REGION_US_EAST1 }}
8079

8180
- name: Build app
82-
run: sam build
81+
run: |
82+
echo "Account ID - ${{ env.ACCOUNT_ID }}"
83+
sam build
8384
8485
- name: Deploy the app
8586
run: |

0 commit comments

Comments
 (0)