Skip to content

Update missingProperties.json file (#166) #183

Update missingProperties.json file (#166)

Update missingProperties.json file (#166) #183

Workflow file for this run

name: Deploy to AWS CDK
on:
push:
branches:
- main
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
env:
GA_ID: ${{ secrets.GA_ID }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: arn:aws:iam::214794239830:role/GithubActionsDeployRole
aws-region: ap-northeast-1
- run: aws sts get-caller-identity
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: setup frontend
run: cd frontend && npm ci && npm run build
- name: Deploy to AWS CDK
run: npx cdk deploy --require-approval never