-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (44 loc) · 1.49 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
name: deploy-to-s3
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code.
uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install Dependencies
run: npm install --save
- name: Build
run: npm run build
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-2
- name: Deploy to s3
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
REACT_APP_BACK_SERVER: ${{ secrets.REACT_APP_BACK_SERVER }}
REACT_APP_KAKAO_KEY: ${{ secrets.REACT_APP_BACK_SERVER }}
run: |
aws s3 cp \
--recursive \
--region ap-northeast-2 \
build s3://sejongpeer.com
- name: Invalidate CloudFront Cache
env:
CLOUD_FRONT_ID: ${{ secrets.CDN_DISTRIBUTION_ID }}
run: |
aws cloudfront create-invalidation --distribution-id $CLOUD_FRONT_ID --paths "/*"