Skip to content

Commit

Permalink
[feat] CI/CD
Browse files Browse the repository at this point in the history
[feat] CI/CD
  • Loading branch information
nykoh2001 authored Feb 9, 2024
2 parents 7398fa1 + 12ef8a2 commit 259da6a
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/main-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: CD

on:
push:
branches: [ "main" ]

jobs:
CI:
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v3

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

- name: create secret config file
run: |
cd src/main/resources
echo "${{ secrets.APPLICATION_MAIN }}" > ./application-main.yml
- name: build with gradle
run: |
chmod +x gradlew
./gradlew clean build -x test
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.9.1

- name: Login to Docker Hub
uses: docker/login-action@v2.2.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile-main
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.MAIN_REPONAME }}

CD:
needs: [CI]
runs-on: ubuntu-22.04

steps:
- name: Docker Image Pull and Container Run
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.MAIN_SERVER_HOST }}
username: ${{ secrets.MAIN_USERNAME }}
key: ${{ secrets.MAIN_SERVER_KEY }}
script: |
cd ~
./deploy.sh
29 changes: 29 additions & 0 deletions .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v3

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

- name: create secret config file
run: |
cd src/main/resources
echo "${{ secrets.APPLICATION_MAIN }}" > ./application-main.yml
- name: build with gradle
run: |
chmod +x gradlew
./gradlew clean build -x test
9 changes: 9 additions & 0 deletions Dockerfile-main
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM gradle:8.5-jdk17 AS builder
COPY . /usr/src
WORKDIR /usr/src
RUN gradle wrapper --gradle-version 8.5
RUN ./gradlew clean build -x test

FROM openjdk:17-jdk-alpine
COPY --from=builder /usr/src/build/libs/server-0.0.1-SNAPSHOT.jar /usr/app/app.jar
ENTRYPOINT ["java", "-jar", "/usr/app/app.jar"]

0 comments on commit 259da6a

Please sign in to comment.