-
Notifications
You must be signed in to change notification settings - Fork 1
79 lines (68 loc) · 2.22 KB
/
deploy.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
name: Deploy
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{secrets.PRIVATE_TOKEN}}
submodules: true
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Make directory for deliver
run: mkdir deploy
- name: Build with Gradle
run: ./gradlew clean build
- name: Deploy Prod use SCP
uses: appleboy/scp-action@master
with:
username: ubuntu
host: ${{ secrets.TICKETING_HOST }}
key: ${{ secrets.PRIVATE_KEY }}
source: "./build/libs/*.jar"
target: "/home/ubuntu/deploy"
strip_components: 2
- name: Run jar on EC2 using SSH
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.TICKETING_HOST }}
username: ubuntu
key: ${{ secrets.PRIVATE_KEY }}
script: |
PID=$(pgrep -f 'java -jar /home/ubuntu/deploy/*.jar')
if [ -n "$PID" ]; then
echo "Stopping existing application with PID $PID"
kill -9 $PID
fi
nohup java -jar -Dspring.profiles.active=prod /home/ubuntu/deploy/*.jar &
- name: Deploy Prod use SCP
uses: appleboy/scp-action@master
with:
username: ubuntu
host: ${{ secrets.WAITING_HOST }}
key: ${{ secrets.PRIVATE_KEY }}
source: "./build/libs/*.jar"
target: "/home/ubuntu/deploy"
strip_components: 2
- name: Run jar on EC2 using SSH
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.WAITING_HOST }}
username: ubuntu
key: ${{ secrets.PRIVATE_KEY }}
script: |
PID=$(pgrep -f 'java -jar /home/ubuntu/deploy/*.jar')
if [ -n "$PID" ]; then
echo "Stopping existing application with PID $PID"
kill -9 $PID
fi
nohup java -jar -Dspring.profiles.active=prod /home/ubuntu/deploy/*.jar &