Skip to content

Commit

Permalink
Setting: CD 파이프라인을 구축한다. (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
seminchoi authored Aug 29, 2024
2 parents cba18aa + 490083a commit 64c10ca
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 0 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 /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 /home/ubuntu/deploy/*.jar &
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ java {
}
}

jar {
enabled = false
}

configurations {
asciidoctorExt
compileOnly {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.thirdparty.ticketing.global.infra;

import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ALBHealthCheckController {
@GetMapping("/health-check")
public ResponseEntity<Void> healthCheck() {
return ResponseEntity.ok().build();
}
}

0 comments on commit 64c10ca

Please sign in to comment.