-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI and deploy automation * main/dev 브랜치 push 발생 시, 빌드-테스트-배포 스크립트 실행
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: [ "main", "dev" ] | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set Java | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x ./server/gradlew | ||
|
||
- name: Run build with Gradle Wrapper | ||
run: ./gradlew clean build | ||
working-directory: ./server | ||
|
||
- name: Send file to the server | ||
uses: appleboy/scp-action@master | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USER }} | ||
port: ${{ secrets.PORT }} | ||
key: ${{ secrets.KEY }} | ||
source: "./build/libs/*.jar" | ||
target: download | ||
|
||
# 원격서버 배포 스크립트 실행 | ||
- name: Deploy remote ssh commands using password | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.HOST }} | ||
username: ${{ secrets.USER }} | ||
port: ${{ secrets.PORT }} | ||
key: ${{ secrets.KEY }} | ||
script_stop: true | ||
script: | | ||
sh scrabler/deploy-scrabler-server.sh | ||