[Fix] - CD docker compose up 수행 경로 수정 #2
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 DEV CI/CD | |
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: 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 |