-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (54 loc) · 1.84 KB
/
springboot-on-push.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
name: Springboot CI on Push
on:
push:
branches: [ "develop" ]
# for debug
pull_request:
branches: [ "develop" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./springboot
steps:
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Add test account key from secrets
run: |
echo "${{ secrets.FIREBASE_TEST_ACCOUNT_KEY }}" | base64 -d > \
src/test/kotlin/com/goliath/emojihub/springboot/TestServiceAccountKey.json
ls -al src/test/kotlin/com/goliath/emojihub/springboot/
# Build & Test
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build
# Setup SSH
- name: Set up SSH agent with private key
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SPRINGBOOT_EC2_SSH_KEY }}
- name: Add remote server to known hosts
run: |
mkdir -p ~/.ssh
ssh-keyscan -H ${{ secrets.SPRINGBOOT_HOST_DNS }} >> ~/.ssh/known_hosts
# Deploy
- name: SCP jar file to server
run: |
scp *jar ${{ secrets.SPRINGBOOT_USERNAME }}@${{ secrets.SPRINGBOOT_HOST_DNS }}:\
${{ secrets.SPRINGBOOT_TARGET_DIR }}
working-directory: ./springboot/build/libs
- name: Execute remote commands
run: |
ssh -v ${{ secrets.SPRINGBOOT_USERNAME }}@${{ secrets.SPRINGBOOT_HOST_DNS }} \
"kill -9 $(pgrep -f springboot-0.0.1-SNAPSHOT.jar) || true && \
cd ${{ secrets.SPRINGBOOT_ROOT_DIR }} && \
sudo nohup /usr/bin/java -jar ${{ secrets.SPRINGBOOT_TARGET_DIR }}/*.jar \
> ${{ secrets.SPRINGBOOT_ROOT_DIR }}/app.log 2>&1 &"