Deploy AWS CDK #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy AWS CDK | |
# Controls when the action will run. | |
on: | |
# push: | |
# branches: [ master ] | |
#pull_request: | |
#branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
aws_cdk: | |
runs-on: ubuntu-latest | |
environment: dev | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: us-east-1 | |
role-to-assume: arn:aws:iam::533267413906:role/GithubRoleAdmin | |
role-session-name: samplerolesession | |
- name: install npm | |
run: 'sudo apt update -y && sudo apt install nodejs npm -y' | |
- name: Install AWS CDK | |
run: 'sudo npm install -g aws-cdk' | |
- name: Install Requirements | |
run: 'pip3 install -r requirements.txt' | |
working-directory: . | |
- name: CDK Synth | |
run: cdk synth | |
working-directory: . | |
- name: CDK bootstrap | |
run: cdk bootstrap | |
working-directory: . | |
- name: CDK Deploy | |
run: cdk deploy --require-approval never | |
working-directory: . | |
# - name: CDK Destroy | |
# run: cdk destroy --force | |
# working-directory: . |