Skip to content

Commit

Permalink
Deploy Create CD.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
geniusYoo authored Jan 27, 2025
1 parent 492ce00 commit 9d87417
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: DOCKER-CD
on:
push:
branches: [ "main" ]

jobs:
ci:
runs-on: ubuntu-22.04
env:
working-directory: .


steps:
- name: 체크아웃
uses: actions/checkout@v3

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

- name: docker 로그인
uses: docker/[email protected]

- name: login docker hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_LOGIN_USERNAME }}
password: ${{ secrets.DOCKER_LOGIN_ACCESSTOKEN }}

- name: docker image 빌드 및 푸시
run: |
cd ./Morib-Server-v2/morib
docker build --platform linux/amd64 -t moribweb/morib_prod .
docker push moribweb/morib_prod:latest
working-directory: ${{ env.working-directory }}

cd:
needs: ci
runs-on: ubuntu-22.04

steps:
- name: docker 컨테이너 실행
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_IP }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SERVER_KEY }}
script: |
cd ~
./deploy.sh

0 comments on commit 9d87417

Please sign in to comment.