-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (60 loc) · 1.81 KB
/
deploy.yaml
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
name: Deploy
on:
workflow_call:
inputs:
STACK:
required: true
type: string
AWS_REGION:
required: true
type: string
GH_ENVIRONMENT:
required: true
type: string
secrets:
AWS_ACCESS_KEY_ID:
required: true
AWS_SECRET_ACCESS_KEY:
required: true
REACT_APP_GA_MEASUREMENT_ID:
required: false
REACT_APP_STORYBLOK_TOKEN:
required: true
jobs:
build-and-deploy:
env:
BUNDLE_PATH: client/build
environment: ${{ inputs.GH_ENVIRONMENT }}
runs-on: ubuntu-latest
steps:
- name: Configure aws credentials
uses: aws-actions/configure-aws-credentials@master
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ inputs.AWS_REGION }}
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install infra dependencies
working-directory: infra
run: npm ci
- name: Install client dependencies
working-directory: client
run: npm ci
- name: Build client
working-directory: client
run: npm run build
env:
REACT_APP_STORYBLOK_API: https://gapi.storyblok.com/v1/api
REACT_APP_STORYBLOK_TOKEN: ${{ secrets.REACT_APP_STORYBLOK_TOKEN }}
REACT_APP_GA_MEASUREMENT_ID: ${{ secrets.REACT_APP_GA_MEASUREMENT_ID }}
INLINE_RUNTIME_CHUNK: false
GENERATE_SOURCEMAP: false
- name: Synth infra
working-directory: infra
run: npx cdk synth ${{ inputs.STACK }}
- name: Deploy
working-directory: infra
run: npx cdk deploy ${{ inputs.STACK }} --require-approval never