-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (64 loc) · 1.73 KB
/
build_deploy_edge.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
name: Build/Deploy Edge
on:
push:
branches:
- main
paths-ignore:
- '**/*.md'
- '.github/environment/**'
permissions:
id-token: write
contents: read
jobs:
build_push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install yarn
run: |
: # set-version will always download the latest version of yarn
yarn policies set-version 4.3.0
yarn install --immutable
- name: Build Website
run: yarn edge
- uses: actions/upload-artifact@v4
with:
name: build
path: ./dist
retention-days: 1
edge_deploy:
environment: edge
runs-on: ubuntu-latest
needs: build_push
env:
DIST: ./dist
permissions:
contents: read
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
name: build
path: ./dist
- name: Configure AWS credentials
id: aws_auth
uses: aws-actions/configure-aws-credentials@v4
with:
audience: sts.amazonaws.com
aws-region: ${{ vars.AWS_REGION }}
role-to-assume: ${{ vars.AWS_ROLE_ARN }}
- name: Copy files to the production website with the AWS CLI
run: |
aws s3 sync --delete ${{ env.DIST }} s3://${{ vars.BUCKET }} --region ${{ vars.AWS_REGION }}
- name: Clear cloudfront cache
run: |
aws cloudfront create-invalidation \
--distribution-id ${{ vars.DISTRIBUTION_ID }} \
--paths "/*" \
--region ${{ vars.AWS_REGION }}