feat: add imgUrl field #65
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: [ "deploy" ] | |
permissions: | |
contents: read | |
jobs: | |
# Build | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
## 체크아웃 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.TOKEN }} | |
submodules: true | |
## JDK 17 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
## Gradle build (Test 제외) | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 | |
with: | |
arguments: clean build -x test | |
## Docker build & push | |
- name: Docker build and push | |
run: | | |
docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }} | |
docker build -t ${{ secrets.DOCKERHUB_REPOSITORY }} . | |
docker tag ${{ secrets.DOCKERHUB_REPOSITORY }} ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:${GITHUB_SHA::7} | |
docker push ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:${GITHUB_SHA::7} | |
# | |
# ## 아티팩트 업로드 | |
# - name: Upload build artifacts | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: build-artifacts | |
# path: build/libs/ # Gradle 빌드 결과물 경로 | |
# | |
# # Docker Push | |
# docker_push: | |
# runs-on: ubuntu-latest | |
# needs: build # This ensures the build job runs before this job | |
# | |
# steps: | |
# ## 체크아웃 (필요한 경우) | |
# - name: Checkout | |
# uses: actions/checkout@v3 | |
# with: | |
# token: ${{ secrets.TOKEN }} | |
# submodules: true | |
# | |
# ## 아티팩트 다운로드 | |
# - name: Download build artifacts | |
# uses: actions/download-artifact@v3 | |
# with: | |
# name: build-artifacts | |
# path: build/libs | |
# | |
# ## Docker build & push | |
# - name: Docker build and push | |
# run: | | |
# docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }} | |
# docker build -t ${{ secrets.DOCKERHUB_REPOSITORY }} . | |
# docker tag ${{ secrets.DOCKERHUB_REPOSITORY }} ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:${GITHUB_SHA::7} | |
# docker push ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:${GITHUB_SHA::7} | |
# Deploy | |
deploy: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.VM_INSTANCE }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
envs: GITHUB_SHA | |
script: | | |
sudo docker-compose down | |
sudo docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }} | |
sudo docker pull ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:${GITHUB_SHA::7} | |
sudo docker tag ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKERHUB_REPOSITORY }}:${GITHUB_SHA::7} ddanzi | |
sudo docker-compose up -d --remove-orphans |