We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d59cf8d commit 4b3778dCopy full SHA for 4b3778d
.github/workflows/cd.yaml
@@ -69,7 +69,6 @@ jobs:
69
uat) echo "ACCOUNT_ID=${{ secrets.AWS_ACCOUNT_ID_UAT }}" >> $GITHUB_ENV ;;
70
prod) echo "ACCOUNT_ID=${{ secrets.AWS_ACCOUNT_ID_PROD }}" >> $GITHUB_ENV ;;
71
esac
72
- echo "Account ID - ${{ env.ACCOUNT_ID }}"
73
74
- name: Configure AWS credentials using OIDC token
75
uses: aws-actions/configure-aws-credentials@v4
@@ -79,7 +78,9 @@ jobs:
79
78
aws-region: ${{ env.REGION_US_EAST1 }}
80
81
- name: Build app
82
- run: sam build
+ run: |
+ echo "Account ID - ${{ env.ACCOUNT_ID }}"
83
+ sam build
84
85
- name: Deploy the app
86
run: |
0 commit comments