[feat] 프로메테우스 의존성 추가 #25
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
# 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 apigateway | |
sudo docker rm apigateway | |
sudo docker rmi ${{ secrets.DOCKER_REPO }} | |
# 새로운 이미지 풀 및 실행 | |
sudo docker pull ${{ secrets.DOCKER_REPO }} | |
sudo docker run -d --name apigateway -p 9000:9000 ${{ 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: 자동 배포" |