Skip to content

Commit

Permalink
Merge pull request #7 from TEAM-SEONYAK/setting/#6
Browse files Browse the repository at this point in the history
[SETTING] #6 - CI/CD 세팅
  • Loading branch information
seokbeom00 authored Jun 30, 2024
2 parents 7e70bbf + c2c0ff5 commit d97ab25
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 1 deletion.
67 changes: 67 additions & 0 deletions .github/workflows/DOCKER-CD.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: DOCKER-CD
on:
push:
branches: [ "develop" ]

jobs:
ci:
runs-on: ubuntu-22.04
env:
working-directory: .


steps:
- name: 체크아웃
uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'

- name: application.yml 생성
run: |
mkdir -p ./src/main/resources && cd $_
touch ./application.yml
echo "${{ secrets.CD_APPLICATION }}" > ./application.yml
cat ./application.yml
working-directory: ${{ env.working-directory }}

- name: 빌드
run: |
chmod +x gradlew
./gradlew build -x test
working-directory: ${{ env.working-directory }}
shell: bash


- name: docker 로그인
uses: docker/[email protected]

- name: login docker hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_LOGIN_USERNAME }}
password: ${{ secrets.DOCKER_LOGIN_ACCESSTOKEN }}

- name: docker image 빌드 및 푸시
run: |
docker build --platform linux/amd64 -t seonyakserver/seonyakdocker .
docker push seonyakserver/seonyakdocker
working-directory: ${{ env.working-directory }}

cd:
needs: ci
runs-on: ubuntu-22.04

steps:
- name: docker 컨테이너 실행
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_IP }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SERVER_KEY }}
script: |
cd ~
./deploy.sh
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,14 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

// PostgreSql
implementation group: 'org.postgresql', name:'postgresql', version:'42.7.3'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.7.3'

// Spring WEB
implementation 'org.springframework.boot:spring-boot-starter-web'

//Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'

// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
Expand Down
4 changes: 4 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM amd64/amazoncorretto:17
WORKDIR /app
COPY ./build/libs/seonyakServer-0.0.1-SNAPSHOT.jar /app/SEONYAK.jar
CMD ["java", "-Duser.timezone=Asia/Seoul", "-jar", "-Dspring.profiles.active=dev", "SEONYAK.jar"]

0 comments on commit d97ab25

Please sign in to comment.