-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (40 loc) · 1.35 KB
/
admin_push.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
name: HybridJGS-FE Dev Production
on:
push:
branches:
- dev
paths:
- 'admin/**'
jobs:
build-and-deploy-admin:
runs-on: ubuntu-latest
env:
working-directory: ./admin
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
- 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
# dependency 설치
- name: Install dependencies
run: yarn
working-directory: ${{ env.working-directory }}
- name: Create .env file
run: echo "VITE_API_URL=${{ secrets.VITE_API_URL }}" > ./.env
working-directory: ${{ env.working-directory }}
# build
- name: Build project
run: yarn build
working-directory: ${{ env.working-directory }}
# S3 버킷에 배포
- name: Deploy static site to S3 bucket
run: aws s3 sync ./admin/dist s3://hybridjgs-admin
# CloudFront 삭제
- name: Invalidate CloudFront Cache
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.DEV_AWS_DISTRIBUTION_ID_ADMIN }} --paths '/*'