-
Notifications
You must be signed in to change notification settings - Fork 2
142 lines (126 loc) · 4.9 KB
/
github-actions.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# github repository actions 페이지에 나타날 이름
name: CI/CD using github actions & docker
# event trigger
# main이나 feature/#1 브랜치에 push가 되었을 때 실행
on:
push:
branches: ["main", "feature/#1"]
permissions:
contents: read
jobs:
CI-CD:
runs-on: ubuntu-latest
steps:
# JDK setting - github actions에서 사용할 JDK 설정 (프로젝트나 AWS의 java 버전과 달라도 무방)
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "temurin"
# - name: create env file
# run: |
# touch .env
# echo "${{ secrets.ENV_VARS }}" >> .env
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ubuntu
key: ${{ secrets.PRIVATE_KEY }}
script: |
sh ../../deploy.sh
# gradle caching - 빌드 시간 향상
- name: Gradle Caching
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# # 환경별 yml 파일 생성(1) - application.yml
# - name: make application.yml
# if: |
# contains(github.ref, 'main') ||
# contains(github.ref, 'develop')
# run: |
# mkdir ./Backend/src/main/resources # resources 폴더 생성
# cd ./Backend/src/main/resources # resources 폴더로 이동
# touch ./application.yml # application.yml 생성
# echo "${{ secrets.YML }}" > ./application.yml # github actions에서 설정한 값을 application.yml 파일에 쓰기
# shell: bash
# 환경별 yml 파일 생성(1) - api
- name: make application-api.yml
contains(github.ref, 'main') ||
contains(github.ref, 'feature/#1')
run: |
cd ../../Backend/src/main/resources/security
touch ./application-api.yml
echo "${{ secrets.YML_API }}" > ./application-api.yml
shell: bash
# 환경별 yml 파일 생성(2) - database
- name: make application-database.yml
contains(github.ref, 'main') ||
contains(github.ref, 'feature/#1')
run: |
cd ../../Backend/src/main/resources/security
touch ./application-database.yml
echo "${{ secrets.YML_DATABASE }}" > ./application-database.yml
shell: bash
# 환경별 yml 파일 생성(3) - security
- name: make application-security.yml
contains(github.ref, 'main') ||
contains(github.ref, 'feature/#1')
run: |
cd ../../Backend/src/main/resources/security
touch ./application-security.yml
echo "${{ secrets.YML_SECURITY }}" > ./application-security.yml
shell: bash
# gradle build
- name: Build with Gradle
run: ./gradlew build -x test
# docker build & push to production
- name: Docker build & push to prod
if: contains(github.ref, 'main')
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -f Dockerfile-dev -t ${{ secrets.DOCKER_USERNAME }}/docker-test-prod .
docker push ${{ secrets.DOCKER_USERNAME }}/docker-test-prod
# docker build & push to develop
- name: Docker build & push to dev
if: contains(github.ref, 'feature/#1')
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -f Dockerfile-dev -t ${{ secrets.DOCKER_USERNAME }}/docker-test-dev .
docker push ${{ secrets.DOCKER_USERNAME }}/docker-test-dev
## deploy to production
- name: Deploy to prod
uses: appleboy/ssh-action@master
id: deploy-prod
if: contains(github.ref, 'main')
with:
host: ${{ secrets.HOST }} # EC2 퍼블릭 IPv4 DNS
username: ubuntu
key: ${{ secrets.PRIVATE_KEY }}
# envs: GITHUB_SHA
script: |
sudo docker ps
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/docker-test-prod
docker-compose up -d
sudo docker image prune -f
# deploy to develop
- name: Deploy to dev
uses: appleboy/ssh-action@master
id: deploy-dev
if: contains(github.ref, 'feature/#1')
with:
host: ${{ secrets.HOST }} # EC2 퍼블릭 IPv4 DNS
username: ubuntu
key: ${{ secrets.PRIVATE_KEY }}
script: |
sudo docker ps
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/docker-test-dev
docker-compose up -d
sudo docker image prune -f