Deploy App #2
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 App | |
on: workflow_dispatch | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
deploy-app: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- id: commit | |
uses: pr-mpt/actions-commit-hash@v2 | |
- name: Install CDKTF CLI | |
run: yarn global add cdktf-cli | |
- name: Install Terraform | |
uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: 1.7.2 | |
terraform_wrapper: false | |
- name: Set up cdktf cache | |
uses: actions/cache@v3 | |
continue-on-error: false | |
with: | |
path: | | |
infra/node_modules/ | |
infra/.gen/ | |
infra/cdktf.out/ | |
key: ${{ runner.os }}-cdktf-${{ hashFiles('infra/**/yarn.lock', '**/constraints.json') }} | |
- name: Deploy App | |
working-directory: infra | |
run: | | |
yarn install --frozen-lockfile --prefer-offline | |
terraform version -json | |
cdktf get | |
cdktf deploy ecr infra --auto-approve | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
COMMIT_SHA: ${{ steps.commit.outputs.short }} |