Skip to content

Commit

Permalink
fix: Script에 Secret 이름 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mclub4 authored Apr 29, 2024
1 parent 0471a93 commit ee0cda2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,18 @@ jobs:
- name: Copy docker-compose.yaml to EC2
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
host: ${{ secrets.AWS_HOST }}
username: ubuntu
key: ${{ secrets.KEY }}
key: ${{ secrets.AWS_KEY }}
source: "/github/workspace/back/docker-compose.yaml"
target: "/home/ubuntu/capstone"

- name: Copy .env to EC2
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
host: ${{ secrets.AWS_HOST }}
username: ubuntu
key: ${{ secrets.KEY }}
key: ${{ secrets.AWS_KEY }}
source: "/github/workspace/.env"
target: "/home/ubuntu/capstone"

Expand Down

0 comments on commit ee0cda2

Please sign in to comment.