-
Notifications
You must be signed in to change notification settings - Fork 2
122 lines (104 loc) · 3.49 KB
/
gradle.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
name: Java CI/CD with Gradle
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: make application.properties
run: |
cd ./src/main/resources
touch ./application.yml
echo "${{ secrets.APPLICATION }}" > ./application.yml
shell: bash
- name: Download keystore.p12
run: |
cd ./src/main/resources
touch ./keystore.p12
echo "${{ secrets.KEYSTORE }}" | base64 -d > ./keystore.p12
shell: bash
- name: google application credentials
run: |
cd ./src/main/resources
touch ./credentials.json
echo "${{ secrets.GOOGLE_APPLICATION_CREDENTIALS}}" > ./credentials.json
shell: bash
- name: Set up environment
run: |
cd ./src/main/resources
echo "GOOGLE_APPLICATION_CREDENTIALS=./credentials.json" >> $GITHUB_ENV
env:
GOOGLE_APPLICATION_CREDENTIALS: ./credentials.json
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
deploy-to-Server:
if: github.event_name == 'push'
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: make application.properties
run: |
cd ./src/main/resources
touch ./application.yml
echo "${{ secrets.APPLICATION }}" > ./application.yml
shell: bash
- name: Download keystore.p12
run: |
cd ./src/main/resources
touch ./keystore.p12
echo "${{ secrets.KEYSTORE }}" | base64 -d > ./keystore.p12
- name: Set up environment
run: |
echo "${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}" > credentials.json
env:
GOOGLE_APPLICATION_CREDENTIALS: ./credentials.json
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Docker build
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -t app .
docker tag app ${{ secrets.DOCKER_USERNAME }}/hearo:latest
docker push ${{ secrets.DOCKER_USERNAME }}/hearo:latest
- name: Deploy start
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.PRIVATE_KEY }}
passphrase: ${{ secrets.SSH_PASSPHRASE }}
# 도커 작업
script: |
docker pull ${{ secrets.DOCKER_USERNAME }}/hearo:latest
docker stop $(docker ps -a -q)
docker run -d --log-driver=syslog -p 8080:8080 \
-v "$HOME/.config/gcloud/":/gcp/:ro \
-e GOOGLE_APPLICATION_CREDENTIALS=/gcp/application_default_credentials.json \
${{ secrets.DOCKER_USERNAME }}/hearo:latest
docker rm $(docker ps --filter 'status=exited' -a -q)
docker image prune -a -f