-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (52 loc) · 1.74 KB
/
auto-deployment.yaml
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
name: AWS EC2 자동 배포
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
env:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USERNAME }}
steps:
- uses: actions/[email protected]
- name: Show git status
run: git status
- name: Setup Java JDK
uses: actions/[email protected]
with:
java-version: 17
distribution: temurin
java-package: jdk
architecture: x64
cache: gradle
- name: Build Jar
run: |
chmod 755 gradlew
./gradlew bootJar
- name: Prepare SSH connect
env:
private_key: ${{ secrets.EC2_PRIVATE_KEY }}
run: |
echo "$private_key" > private_key.pem
chmod 400 private_key.pem
mkdir ~/.ssh
ssh-keyscan -t rsa $host > ~/.ssh/known_hosts
- name: Upload deployment scripts
run: |
sudo chmod 755 script/deploy/*
scp -i private_key.pem -r script/deploy/* "${username}@${host}:deploy"
- name: Kill current running Spring process
run: ssh -i private_key.pem "${username}@${host}" "deploy/shutdown.sh; deploy/backup.sh"
- name: Send jar file to EC2
run: |
jarPath=$(./gradlew -q jarPath)
scp -i private_key.pem $jarPath "${username}@${host}:~/server.jar"
- name: Startup new uploaded jar
run: ssh -i private_key.pem "${username}@${host}" "source ~/.env; deploy/startup.sh"
- name: Wait 30 seconds for server to startup
run: sleep 30
- name: Check and Recover
run: ssh -i private_key.pem "${username}@${host}" "source ~/.env; deploy/check_and_recover.sh"