-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (72 loc) · 2.31 KB
/
cicd.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
name: CD
on:
push:
branches: [ "develop" ]
jobs:
deploy-ci:
runs-on: ubuntu-22.04
env:
working-directory: notify
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '21'
- name: make application-secret.yml
run: |
touch ./src/main/resources/application-secret.yml
echo "${{ secrets.APPLICATION_SECRET }}" > ./src/main/resources/application-secret.yml
shell: bash
- name: make chat-prompt.txt
run: |
touch ./src/main/resources/chat-prompt.txt
echo "${{ secrets.CHAT_PROMPT }}" > ./src/main/resources/chat-prompt.txt
shell: bash
- name: make chat-summary-prompt.txt
run: |
cat <<EOF > ./src/main/resources/chat-summary-prompt.txt
${{ secrets.CHAT_SUMMARY_PROMPT }}
EOF
shell: bash
- name: make memo-summary-prompt.txt
run: |
touch ./src/main/resources/memo-summary-prompt.txt
echo "${{ secrets.MEMO_SUMMARY_PROMPT }}" > ./src/main/resources/memo-summary-prompt.txt
shell: bash
- name: make ability-analysis-prompt.txt
run: |
cat <<EOF > ./src/main/resources/ability-analysis-prompt.txt
${{ secrets.ABILITY_ANALYSIS_PROMPT }}
EOF
shell: bash
- name: 빌드
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash
- name: docker build 가능하도록 환경 설정
uses: docker/setup-buildx-action@v2.9.1
- name: docker hub에로그인
uses: docker/login-action@v2.2.0
with:
username: ${{ secrets.DOCKERHUB_LOGIN_USERNAME }}
password: ${{ secrets.DOCKERHUB_LOGIN_ACCESSTOKEN }}
- name: docker image 빌드 및 푸시
run: |
docker build --platform linux/amd64 -t corecord/notify .
docker push corecord/notify
deploy-cd:
needs: deploy-ci
runs-on: ubuntu-22.04
steps:
- name: 도커 컨테이너 실행
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.RELEASE_HOST }}
username: ${{ secrets.RELEASE_USERNAME }}
key: ${{ secrets.RELEASE_KEY }}
script: |
sudo chmod +x /home/ubuntu/deploy.sh
sudo /home/ubuntu/deploy.sh