-
Notifications
You must be signed in to change notification settings - Fork 3
62 lines (51 loc) · 1.81 KB
/
service-deploy.yaml
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
name: Front Deployment
on:
push:
branches:
- main
jobs:
build:
name: react build & deploy
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
# 레포지토리에 접근하여 CI 서버로 코드를 내려받는 과정입니다.
- name: Checkout repository
uses: actions/checkout@v3
# yarn의 캐시를 설정합니다.
- name: Cache Yarn dependencies
uses: actions/cache@v3
with:
path: |
service/.yarn/cache
service/.yarn/build-state.yml
service/.pnp.*
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies with Yarn
working-directory: ./service
run: yarn install --immutable
# 여기에서 환경 변수를 주입하여 빌드합니다.
- name: Build the project
working-directory: ./service
run: yarn build
env:
VITE_SITE_URL: ${{ secrets.VITE_SITE_URL }}
VITE_ANOTHER_ENV: ${{ secrets.VITE_ANOTHER_ENV }}
- name: Echo test
run: echo ${{ secrets.AWS_ARN }}
# AWS에 접근하기 위한 권한을 받아옵니다.
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.AWS_ARN }}
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
# S3에 dist 파일을 올립니다.
- name: Upload to S3
run: aws s3 sync ./service/dist s3://${{ secrets.AWS_S3_BUCKET_NAME_A }} --delete
# CloudFront 캐시 무효화
- name: CloudFront Invalidation
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_CLOUDFRONT_ID_A }} --paths "/*"