-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1.11 KB
/
build-deploy-to-ec2.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
name: build & deploy to ec2
on:
workflow_dispatch:
push:
branches:
- dev
- dev-fix
jobs:
build:
name: build & deploy
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- 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: build with gradle
run: ./gradlew build
- name: scp to ec2
uses: appleboy/[email protected]
with:
host: ${{secrets.EC2_HOST }}
username: ${{ secrets.EC2_USERNAME }}
key: ${{ secrets.EC2_KEY }}
source: "./build/libs/dev.jar"
target: "./gymmi/archive"
strip_components: 3
- name: exec deploy.sh
uses: appleboy/[email protected]
with:
host: ${{secrets.EC2_HOST }}
username: ${{ secrets.EC2_USERNAME }}
key: ${{ secrets.EC2_KEY }}
script: |
cd ./gymmi
sh deploy.sh