This commit is contained in:
adueck 2024-11-28 15:15:56 +05:00
parent a477d260bb
commit d702bb797f
1 changed files with 8 additions and 2 deletions

View File

@ -21,9 +21,15 @@ jobs:
cache: "npm"
- name: Install AWS CDK
run: npm install -g aws-cdk
- name: CDK Deplay
- name: CDK Deploy
run: |
cd functions
npm install
cd website
npm install
cd ../account
npm install
cd ../functions
npm install
cdk deploy --require-approval never
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}