Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: CD yml 파일 구성 #28 #53

Merged
merged 10 commits into from
Jul 23, 2024
59 changes: 59 additions & 0 deletions .github/workflows/backend-ci-cd-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Backend CI/CD dev

on:
push:
branches: [ "develop-be" ]

jobs:
ci:
runs-on: ubuntu-latest

defaults:
run:
shell: bash
working-directory: ./backend

permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup with Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0

- name: Build with Gradle
run: ./gradlew clean build

- name: Login to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_DEPLOY_USERNAME }}
password: ${{ secrets.DOCKERHUB_DEPLOY_TOKEN }}

- name: Docker Image Build
run: |
docker build --platform linux/arm64 -t hotea990/staccato -f Dockerfile .

- name: Docker Hub Push
run: docker push hotea990/staccato

cd:
needs: ci
runs-on: self-hosted
steps:
- name: Pull Docker image
run: |
sudo docker login --username ${{ secrets.DOCKERHUB_DEPLOY_USERNAME }} --password ${{ secrets.DOCKERHUB_DEPLOY_TOKEN }}
sudo docker pull hotea990/staccato

- name: Docker Compose up
run: sudo docker-compose -f /home/ubuntu/staccato/docker-compose.yml up -d
4 changes: 2 additions & 2 deletions backend/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ services:
- springboot-mysql-network
application:
container_name: staccato-backend-app
build: .
image: ${STACCATO_IMAGE}
depends_on:
- database
environment:
- SPRING_DATASOURCE_URL=${SPRING_DATASOURCE_URL}
- SPRING_DATASOURCE_USERNAME=${SPRING_DATASOURCE_USERNAME}
- SPRING_DATASOURCE_PASSWORD=${SPRING_DATASOURCE_PASSWORD}
ports:
- "8080:8080"
- "80:8080"
restart: always
networks:
- springboot-mysql-network
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spring:
hibernate:
format_sql: true
hibernate:
ddl-auto: validate
ddl-auto: none
database-platform: org.hibernate.dialect.MySQL8Dialect
defer-datasource-initialization: true

Expand Down