-
Notifications
You must be signed in to change notification settings - Fork 2
68 lines (55 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Deploy Frontend by Cloudfront
on:
workflow_dispatch:
push:
branches:
- main
- dev
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
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: Install Dependencies
run: npm install
- name: Ensure env-cmd is installed
run: npm install env-cmd --save-dev
- name: Set environment variables for Develop
if: github.ref == 'refs/heads/dev'
run: |
echo "REACT_APP_API_URL=${{ secrets.REACT_APP_API_URL_DEV }}" > .env.development
env:
REACT_APP_ENV: development
- name: Build Project for Develop
if: github.ref == 'refs/heads/dev'
run: |
echo "Building project with API URL: ${{ secrets.REACT_APP_API_URL_DEV }}"
CI=false npm run build:dev
- name: Deploy to S3 for Development
if: github.ref == 'refs/heads/dev'
run: aws s3 sync build s3://ustock-dev-bucket/react/ --delete
- name: Set environment variables for Production
if: github.ref == 'refs/heads/main'
run: |
echo "REACT_APP_API_URL=${{ secrets.REACT_APP_API_URL_PROD }}" > .env.production
env:
REACT_APP_ENV: production
- name: Build Project for Production
if: github.ref == 'refs/heads/main'
run: |
echo "Building project with API URL: ${{ secrets.REACT_APP_API_URL_PROD }}"
CI=false npm run build:prod
- name: Deploy to S3 for Production
if: github.ref == 'refs/heads/main'
run: aws s3 sync build s3://ustock-bucket/react/ --delete