-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (59 loc) · 1.54 KB
/
deploy.yml
File metadata and controls
75 lines (59 loc) · 1.54 KB
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Deploy to Production
on:
workflow_dispatch:
push:
branches:
- "main"
concurrency: deploy_production
jobs:
checks:
name: Unit Test
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "yarn"
- name: Install Dependencies
run: yarn install --immutable --immutable-cache
- name: Lint
run: yarn lint
- name: Run Tests
run: yarn test
deploy:
name: Deploy
needs: checks
timeout-minutes: 30
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "yarn"
- name: Install Dependencies
run: yarn install --immutable --immutable-cache
- name: Assume role using OIDC
uses: aws-actions/configure-aws-credentials@master
with:
role-to-assume: arn:aws:iam::283125337632:role/github-ci-role
aws-region: eu-west-1
- name: Build
run: yarn build
env:
NODE_ENV: production
- name: Deploy
run: yarn deploy
env:
NODE_ENV: production
SST_STAGE: production