-
Notifications
You must be signed in to change notification settings - Fork 5
97 lines (81 loc) · 2.85 KB
/
deploy.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: deploy
on:
pull_request:
types:
- closed
branches:
- main
jobs:
deploy-prod:
name: Deploy Prod
runs-on: ubuntu-latest
environment: prod
permissions:
actions: write
contents: read
id-token: write
steps:
- name: 🚫 Cancel Previous Runs
uses: styfle/[email protected]
- name: ⬇️ Checkout Code
uses: actions/checkout@v4
- name: ⚒️ Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: 🔑 Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_SERVICE_ROLE_ARN }}
aws-region: us-east-1
- name: 👀 Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: 📥 Install Backend and Sources
uses: ./.github/actions/backend
# - name: 📥 Install Frontend
# uses: ./.github/actions/frontend
# - name: 🗒️ Create Frontend .env
# run: |
# touch .env
# echo NEXT_PUBLIC_USER_POOL_ID=${{ secrets.USER_POOL_ID }} >> .env
# echo NEXT_PUBLIC_USER_POOL_CLIENT_ID=${{ secrets.USER_POOL_CLIENT_ID }} >> .env
# echo NEXT_PUBLIC_APPSYNC_API_ENDPOINT=${{ secrets.APPSYNC_API_ENDPOINT }} >> .env
# echo NEXT_PUBLIC_APPSYNC_REGION=${{ secrets.REGION }} >> .env
# working-directory: frontend
# - name: 🏗 Build Frontend
# run: npm run build-frontend
# working-directory: infrastructure
- name: 🗒️ Create Backend .env
run: |
touch .env
echo CERTIFICATE_ARN=${{ secrets.CERTIFICATE_ARN }} >> .env
echo DLQ_NOTIFICATIONS=${{ secrets.DLQ_NOTIFICATIONS }} >> .env
working-directory: backend
- name: 🚧 Build AppSync
run: |
npm run build-appsync
working-directory: backend
- name: 🚧 Build Backend
run: |
find ./src/lambda -mindepth 2 -maxdepth 2 -type f -name 'package.json' |
while IFS= read -r file; do
echo "🚧 Building $file"
cd "$(dirname "$file")"
npm run build
cd - >/dev/null
done
working-directory: backend
- name: 🚀 Deploy Backend
run: |
echo "🚀 Deploying backend prod"
npm run cdk -- deploy --all -c stage=backend -c env=prod --require-approval=never
working-directory: backend
# - name: 🚀 Deploy Frontend
# run: npx sst deploy --stage prod
# working-directory: frontend