-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (56 loc) · 1.73 KB
/
buildReact.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
name: Build react app
on:
push:
branches: [main]
permissions:
id-token: write
contents: read
jobs:
temp:
name: log
runs-on: ubuntu-latest
steps:
- name: log
run: echo "hello world"
# build:
# name: build
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Retrieve and create SSL files
# run: |
# cd frontend/server
# echo "${{ secrets.server_crt }}" > server.crt
# echo "${{ secrets.server_key }}" > server.key
# - name: Configure AWS credentials
# uses: aws-actions/configure-aws-credentials@v2
# with:
# role-to-assume: arn:aws:iam::122786534921:role/ECR_PowerUser
# aws-region: ap-northeast-2
# - name: Login to Amazon ECR
# id: login-ecr
# uses: aws-actions/amazon-ecr-login@v1
# - name: build react app
# env:
# ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
# ECR_REPOSITORY: bitmoi-client
# IMAGE_TAG: ${{ github.sha }}
# run: |
# cd frontend
# npm install
# CI=false npm run build
# cd server
# docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -t $ECR_REGISTRY/$ECR_REPOSITORY:latest .
# docker push -a $ECR_REGISTRY/$ECR_REPOSITORY
# - name: Restart server
# uses: appleboy/ssh-action@master
# with:
# host: ${{ secrets.EC2_HOST }}
# username: ${{ secrets.EC2_USERNAME }}
# key: ${{ secrets.EC2_PRIV }}
# script: |
# cd /home/${{ secrets.EC2_USERNAME }}
# ./stop.sh
# ./login.sh
# ./start.sh