[Refactor] 여행기, 여행계획 DTO에 사용되는 도메인 용어 통일 개선 (#119) #21
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: BE CD DEV | |
on: | |
push: | |
branches: [ develop/be ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./backend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Make keystore file | |
run: echo "${{secrets.SSL_KEYSTORE}}" | base64 --decode > ./src/main/resources/keystore.p12 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew clean build | |
- name: Sign in Dockerhub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{secrets.DOCKER_USERNAME}} | |
password: ${{secrets.DOCKER_PASSWORD}} | |
- name: Build the Docker image | |
run: docker build -f ./Dockerfile --platform linux/arm64 --no-cache -t touroot/touroot-api . | |
- name: Push the Docker Image to Dockerhub | |
run: docker push touroot/touroot-api | |
deploy: | |
needs: build | |
runs-on: self-hosted | |
steps: | |
- name: Docker Image pull | |
run: sudo docker pull touroot/touroot-api | |
- name: Docker Compose up | |
run: sudo docker compose -f ~/docker/touroot-docker.yml up -d |