-
Notifications
You must be signed in to change notification settings - Fork 1
85 lines (71 loc) · 2.3 KB
/
auto-deployment.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
name: AWS EC2 자동 배포
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
env:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USERNAME }}
steps:
- uses: actions/checkout@v4.1.2
- name: Show git status
run: git status
- name: Setup Java JDK
uses: actions/setup-java@v4.2.1
with:
# The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file
java-version: 17
# Java distribution. See the list of supported distributions in README file
distribution: temurin
# The package type (jdk, jre, jdk+fx, jre+fx)
java-package: jdk
# The architecture of the package (defaults to the action runner's architecture)
architecture: x64
cache: gradle
- name: Build Jar
run: |
chmod 755 gradlew
./gradlew bootJar
working-directory: JWT
- 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
working-directory: JWT
- name: Upload deployment scripts
run: |
scp -i private_key.pem -r deploy "${username}@${host}:~"
working-directory: JWT
- name: Kill current running Spring process
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USERNAME }}
key: ${{ secrets.EC2_PRIVATE_KEY }}
script: |
echo $JAVA_HOME
sudo chmod 755 deploy/*
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"
working-directory: JWT
- name: Run new uploaded jar
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.EC2_HOST }}
username: ${{ secrets.EC2_USERNAME }}
key: ${{ secrets.EC2_PRIVATE_KEY }}
script: |
sudo chmod 755 deploy/*
deploy/startup.sh