-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (69 loc) · 1.91 KB
/
deploy-cdk-env.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: deploy-cdk-env
env:
NODE_VERSION: 20
OIDC_ROLE_ARN: arn:aws:iam::${{ vars.AWS_ACCOUNT_ID }}:role/saas-github-oidc-provider-role
permissions:
id-token: write
contents: read
on:
workflow_run:
workflows: ["ci"]
branches: [main]
types:
- completed
workflow_dispatch:
inputs:
environment:
description: 'Environment to deploy: [dev]'
type: environment
required: true
default: 'dev'
jobs:
changes:
runs-on: ubuntu-latest
outputs:
infrastructure: ${{ steps.filter.outputs.infrastructure }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: dorny/paths-filter@v3
id: filter
with:
base: main
filters: |
infrastructure:
- '.github/workflows/deploy-cdk-env.yml'
- 'infrastructure/src/env/**'
- '!**/*.md'
dev:
if: ${{ needs.changes.outputs.infrastructure == 'true' }}
needs: [changes]
runs-on: ubuntu-latest
environment: dev
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install
run: npm ci
- name: Build
working-directory: ./infrastructure
run: |
npm run lint
npm run build
- name: Assume OIDC Role
uses: aws-actions/configure-aws-credentials@v4
with:
role-session-name: dev-gh-infrastructure-deploy-session
role-to-assume: ${{ env.OIDC_ROLE_ARN }}
aws-region: ${{ vars.AWS_REGION }}
- name: Synth
working-directory: ./infrastructure
run: npx cdk synth DevDnsStack 'Dev*' --require-approval never
- name: Deploy
working-directory: ./infrastructure
run: npx cdk deploy DevDnsStack 'Dev*' --require-approval never