Feat: 배포 스크립트 수정 #31
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
name: Java CI with Gradle | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: JDK 17 준비 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Gradle 준비 | |
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 | |
- name: 빌드 | |
env: | |
DB_URL: ${{ secrets.DB_URL }} | |
DB_USERNAME: ${{ secrets.DB_USERNAME }} | |
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | |
run: ./gradlew build | |
- name: 빌드 결과물 업로드 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: umpa-backend-${{ github.sha }} | |
path: build/libs/umpa-backend-*.jar | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: JDK 17 준비 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: 빌드 결과물 다운로드 | |
uses: actions/download-artifact@v4 | |
with: | |
name: umpa-backend-${{ github.sha }} | |
path: ./build/libs | |
- name: SCP 파일 전송 | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SERVER_IP }} | |
username: ${{ secrets.SERVER_USER }} | |
port: ${{ secrets.SERVER_PORT }} | |
key: ${{ secrets.SERVER_KEY }} | |
timeout: '120s' | |
source: ./build/libs/*.jar | |
target: ~/umpa/umpa-backend |