Skip to content

Commit

Permalink
fix: CD 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kalsteve committed May 30, 2024
1 parent 8688312 commit e72223c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ github.token }}
name: server-jar
path: ./output
path: ./app

# docker-compose.yml 파일 이동
- name: Move docker-compose_for_action.yml
run: |
mv ./docker-compose_for_action.yml ./output/docker-compose_for_action.yml
mv ./docker-compose_for_action.yml ./app/docker-compose_for_action.yml
# Docker 이미지를 서버로 전송
- name: file to Server
Expand All @@ -42,7 +42,7 @@ jobs:
username: ${{ secrets.REMOTE_SSH_USERNAME }}
key: ${{ secrets.REMOTE_SSH_KEY }}
source: ./output/*
target: app/
target: ./

# 서버에서 Docker 이미지 빌드 및 실행
- name: Deploy to Server
Expand Down

0 comments on commit e72223c

Please sign in to comment.