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

백엔드 CI / CD 스크립트 수정 #125

Merged
merged 2 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions .github/workflows/cd-dev.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ci-dev
name: CI CD dev

on:
pull_request:
push:
branches:
- develop-backend

Expand Down Expand Up @@ -40,3 +40,24 @@ jobs:
run: |
docker buildx build ./ --platform=linux/arm64 -t 2024mouda/mouda-be:latest
docker push 2024mouda/mouda-be:latest

deploy:
needs: build
runs-on: self-hosted

steps:
- name: change permission
run: |
sudo chown -R ubuntu:ubuntu /home/ubuntu/actions-runner/_work/2024-mouda

- name: DockerHub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Docker Compose up
run: |
docker compose -f ./backend/docker-compose.yml down mouda-be
docker compose -f ./backend/docker-compose.yml pull mouda-be
docker compose -f ./backend/docker-compose.yml up -d mouda-be
31 changes: 31 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: pull-request-build

on:
pull_request:
branches:
- develop-backend

jobs:
build:
runs-on: ubuntu-24.04

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

steps:
- name: 레포지토리 체크아웃
uses: actions/checkout@v4

- name: JDK 17을 설치
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'

- name: gradlew 권한 부여
run: chmod +x ./gradlew

- name: Gradle 빌드
run: ./gradlew clean build