-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (56 loc) · 1.68 KB
/
DOCKER-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
59
60
61
62
63
64
65
66
67
68
69
70
name: DOCKER-CD
on:
push:
branches: [ "develop" ]
jobs:
ci:
runs-on: ubuntu-latest
env:
working-directory: .
steps:
- name: 체크아웃
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: application-secret.yml 생성
run: |
cd ./src/main/resources
touch ./application-secret.yml
echo "${{ secrets.CD_APPLICATION_SECRET}}" > ./application-secret.yml
cat ./application-secret.yml
cat ./application-dev.yml
working-directory: ${{ env.working-directory }}
- name: 빌드
run: |
chmod +x gradlew
./gradlew build -x test
working-directory: ${{ env.working-directory }}
shell: bash
- name: docker 로그인
uses: docker/[email protected]
- name: login docker hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_LOGIN_USERNAME }}
password: ${{ secrets.DOCKER_LOGIN_ACCESSTOKEN }}
- name: docker image 빌드 및 푸시
run: |
docker build --platform linux/amd64 -t hellotiki/dev .
docker push hellotiki/dev
working-directory: ${{ env.working-directory }}
cd:
needs: ci
runs-on: ubuntu-22.04
steps:
- name: docker 컨테이너 실행
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_IP }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SERVER_KEY }}
script: |
cd ~
./deploy.sh