docs: codecov 뱃지 추가 #87
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: CI/CD | |
#event trigger | |
on: | |
push: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# JDK 17 설정 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'oracle' | |
# Gradle 설정 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
# Docker Hub 로그인 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
# gradlew 파일 권한 지정 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
# gradle Jib를 이용해 이미지를 만들고 원격 저장소에 Push | |
- name: Setup Jib with Gradle | |
run: ./gradlew jib | |
# ssh로 접속해 재배포 (2024 . 01 . 06 배포 중단) | |
#- name: Deploy | |
# uses: appleboy/ssh-action@master | |
# with: | |
# host: ${{ secrets.REMOTE_IP }} | |
# username: ${{ secrets.REMOTE_SSH_ID }} | |
# key: ${{ secrets.REMOTE_SSH_KEY }} | |
# port: ${{ secrets.REMOTE_SSH_PORT }} | |
# script: | | |
# cd docker | |
# docker compose pull wanf | |
# docker compose up -d wanf |