Skip to content

Commit

Permalink
feat: add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Oct 17, 2024
1 parent afe81d4 commit c852550
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Deploy CDK on merge to main

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
environment: dev

steps:
- name: Checkout the repository
uses: actions/checkout@v3

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ vars.AWS_CDK_DEPLOY_ROLE_ARN }}
aws-region: ${{ vars.AWS_REGION }}
role-session-name: GitHubActionsCDKDeploy
role-duration-seconds: 900 # Adjust as necessary

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18 # Use the node version matching your project

- name: Install dependencies
run: |
npm install -g aws-cdk
npm ci # Install project dependencies from package-lock.json
- name: Deploy CDK to dev environment
run: |
cdk deploy --require-approval never
env:
AWS_REGION: ${{ vars.AWS_REGION }}
AWS_ACCOUNT_ID: ${{ vars.AWS_ACCOUNT_ID }}
SSL_CERTIFICATE_ARN: ${{ vars.SSL_CERTIFICATE_ARN }}
HOSTNAME: ${{ vars.SSL_CERTIFICATE_ARN }}
STAGE: ${{ vars.SSL_CERTIFICATE_ARN }}
KEYCLOAK_VERSION: ${{ vars.SSL_CERTIFICATE_ARN }}

0 comments on commit c852550

Please sign in to comment.