Skip to content

Commit

Permalink
Merge pull request #4 from KU-Taverse/ci/cd
Browse files Browse the repository at this point in the history
[CI/CD] discovery 서버 자동 배포 설정
  • Loading branch information
david-parkk authored Sep 5, 2024
2 parents 647b1b1 + 7d4765d commit ab50b2d
Show file tree
Hide file tree
Showing 2 changed files with 153 additions and 0 deletions.
87 changes: 87 additions & 0 deletions .github/workflows/discovery_cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Java CD with Gradle

on:
issue_comment:
types: [ created, edited ]

jobs:
deploy:
if: github.event.issue.pull_request && contains(github.event.comment.body, '/쿠타버스') && contains(github.event.comment.body, '배포')
runs-on: ubuntu-latest
permissions:
write-all
#contents: read

steps:
- uses: actions/checkout@v4

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

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0

- name: Build with Gradle Wrapper
run: ./gradlew build

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Docker build & push to docker repo
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker buildx build \
--platform linux/amd64,linux/arm64 \
-f ./infra/docker/Dockerfile \
-t ${{ secrets.DOCKER_REPO }} \
--push \
.
- name: Deploy to server
uses: appleboy/ssh-action@master
id: deploy
with:
host: ${{ secrets.HOST }}
username: ubuntu
port: 22
key: ${{ secrets.KEY }}
envs: GITHUB_SHA
script: |
sudo docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
# 기존 컨테이너와 이미지를 정리
sudo docker stop discovery
sudo docker rm discovery
sudo docker rmi ${{ secrets.DOCKER_REPO }}
# 새로운 이미지 풀 및 실행
sudo docker pull ${{ secrets.DOCKER_REPO }}
sudo docker run -d --name discovery -p 8761:8761 ${{ secrets.DOCKER_REPO }}
- name: Notify
uses: actions/github-script@v5
with:
github-token: ${{secrets.TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '🌎 배포하였습니다.'
})
- name: add label
uses: actions-ecosystem/action-add-labels@v1
with:
labels: ":satellite: 자동 배포"
66 changes: 66 additions & 0 deletions .github/workflows/discovery_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Java CI with Gradle

on:
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
permissions:
write-all
#contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'


- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0


- name: Build with Gradle Wrapper
run: ./gradlew build


- name: Test with Gradle
run: ./gradlew --info test

- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
junit_files: '**/build/test-results/test/TEST-*.xml'

dependency-submission:

runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0


0 comments on commit ab50b2d

Please sign in to comment.