Skip to content

Commit

Permalink
chore: CD 스크립트 파일 복사 액션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hseong3243 committed Jan 15, 2024
1 parent ede01ee commit b727bc8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ jobs:
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: build

- name: copy file via ssh password
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.AWS_HOST }}
username: ${{ secrets.AWS_USERNAME }}
key: ${{ secrets.AWS_PRIVATE_KEY }}
source: "./scripts/docker-compose.yml,./scripts/data"
target: "/home/ubuntu"

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit b727bc8

Please sign in to comment.