forked from klaytn/klaytn-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 1.14 KB
/
prod.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
name: klaytn-docs-docusaurus prod deploy workflow
on:
push:
branches:
- main
jobs:
deploy:
name: deploy
permissions:
id-token: write
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Get AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.AWS_IAM_ROLE_ARN_PROD }}
role-session-name: SessionForKlaytnActions
aws-region: ${{ secrets.AWS_REGION_PROD }}
- name: Installing Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Installing dependencies
run: |
yarn install
- name: Build static files
run: yarn build
- name: Sync to S3 bucket and validation cloudfront
env:
S3_BUCKET_PROD: ${{ secrets.S3_BUCKET_PROD }}
CLOUDFRONT_ID_PROD: ${{ secrets.CLOUDFRONT_ID_PROD }}
run: |
aws s3 sync ./build/ $S3_BUCKET_PROD --delete
aws cloudfront create-invalidation --distribution-id $CLOUDFRONT_ID_PROD --paths "/*"