feat: JPA 1차 캐싱 처리 #62
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
name: Java CI with Gradle | |
on: | |
push: | |
branches: [ "release" ] | |
permissions: | |
contents: read | |
jobs: | |
ci-pipeline: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- uses: actions/checkout@v3 | |
- name: create-json | |
id: create-json | |
uses: jsdaniell/[email protected] | |
with: | |
name: "jikgong-firebase.json" | |
json: ${{ secrets.JIKGONG_FIREBASE }} | |
dir: ./src/main/resources/firebase/ | |
- name: Run chmod to make graldew executable | |
run: chmod +x ./gradlew | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 | |
with: | |
arguments: clean bootJar -Pspring.profiles.active=prod | |
options: '--no-build-cache' | |
- name: docker image build | |
run: docker build -t ${{ secrets.DOCKERHUB_USERNAME }}/jikgong . | |
- name: docker login | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: docker Hub push | |
run: docker push ${{ secrets.DOCKERHUB_USERNAME }}/jikgong | |
cd-pipeline: | |
needs: ci-pipeline | |
runs-on: ubuntu-latest | |
steps: | |
# docker compose a 파일 scp | |
- uses: actions/checkout@master | |
- name: copy docker-compose.a.yml to remote server | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ubuntu | |
password: ${{ secrets.SSH_PASSWORD }} | |
port: 22 | |
source: "./docker-compose.a.yml" | |
target: "/home/ubuntu/" | |
# docker compose b 파일 scp | |
- uses: actions/checkout@master | |
- name: copy docker-compose.b.yml to remote server | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ubuntu | |
password: ${{ secrets.SSH_PASSWORD }} | |
port: 22 | |
source: "./docker-compose.b.yml" | |
target: "/home/ubuntu/" | |
# - name: executing remote ssh commands using password | |
# uses: appleboy/ssh-action@master | |
# with: | |
# host: ${{ secrets.SSH_HOST }} | |
# username: ubuntu | |
# password: ${{ secrets.SSH_PASSWORD }} | |
# port: 22 | |
# script: | | |
# sudo docker rm -f $(sudo docker ps -q -f "expose=8080") | |
# sudo docker rm -f $(sudo docker ps -q -f "expose=6379") | |
# sudo docker pull ${{ secrets.DOCKERHUB_USERNAME }}/jikgong | |
# sudo docker-compose up -d | |
# sudo docker image prune -f | |
- name: copy deploy.sh to remote server | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ubuntu | |
password: ${{ secrets.SSH_PASSWORD }} | |
port: 22 | |
source: "./deploy.sh" | |
target: "/home/ubuntu/" | |
- name: Execute deploy.sh script remotely | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ubuntu | |
password: ${{ secrets.SSH_PASSWORD }} | |
port: 22 | |
script: | | |
chmod +x /home/ubuntu/deploy.sh | |
/home/ubuntu/deploy.sh | |
notify-slack: | |
needs: cd-pipeline | |
runs-on: ubuntu-latest | |
if: always() # 이 작업은 성공하거나 취소되었을 때에도 실행 | |
steps: | |
- name: action-slack | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ needs.cd-pipeline.result }} | |
author_name: jikgong backend - prod | |
fields: repo,commit,message,author | |
mention: here | |
if_mention: failure,cancelled | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |