-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ji hwan Shin
authored and
Ji hwan Shin
committed
Apr 21, 2024
1 parent
41f3ea9
commit c09e86d
Showing
2 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Makers_Crew Dev CD #TODO - prod에 맞게 변경 필요 | ||
on: | ||
workflow_run: | ||
workflows: [ "Makers_Crew CI" ] | ||
branches: [ "main" ] | ||
types: [ completed ] | ||
|
||
push: | ||
branches: [ "main" ] | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-22.04 | ||
env: | ||
working-directory-spring: main | ||
working-directory-nestjs: server | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Docker build 가능하도록 환경 설정 | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Docker hub에 로그인 | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_LOGIN_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_LOGIN_ACCESSTOKEN }} | ||
|
||
- name: docker image 빌드 및 푸시 (Spring) | ||
run: | | ||
docker build --platform linux/amd64 -t makerscrew/main . | ||
docker push makerscrew/main | ||
working-directory: ${{ env.working-directory-spring }} | ||
|
||
- name: docker image 빌드 및 푸시 (nestjs) | ||
run: | | ||
docker build --platform linux/amd64 -t makerscrew/server . | ||
docker push makerscrew/server | ||
working-directory: ${{ env.working-directory-nestjs }} | ||
|
||
- name: 도커 컨테이너 실행 | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.DEV_SERVER_IP }} | ||
username: ${{ secrets.DEV_SERVER_USER }} | ||
key: ${{ secrets.DEV_SERVER_KEY }} | ||
script: | | ||
cd ~ | ||
chmod +x ./deploy.sh | ||
./deploy.sh |