-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (48 loc) · 1.49 KB
/
CD.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
name: CD
on:
workflow_run:
workflows: ["CI"] # CI 워크플로 이름
types:
- completed # CI 완료 후 실행
jobs:
deploy:
runs-on: ubuntu-24.04
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: Create application.yml
run: |
cd src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application-deploy.yml
echo "${{ secrets.DATA }}" > ./data.sql
cat ./application-deploy.yml
- name: Build project
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash
- name: Enable Docker build
uses: docker/[email protected]
- name: Login to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_LOGIN_USERNAME }}
password: ${{ secrets.DOCKERHUB_LOGIN_ACCESSTOKEN }}
- name: Build and push Docker image
run: |
docker build --platform linux/amd64 -t sfaas/server .
docker push sfaas/server
- name: Deploy to server
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.RELEASE_SERVER_IP }}
username: ${{ secrets.RELEASE_SERVER_USER }}
key: ${{ secrets.RELEASE_SERVER_KEY }}
script: |
cd ~
./deploy.sh