Skip to content

Commit

Permalink
chore: cicd.yml 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Jan 2, 2025
1 parent 7baeb81 commit c2f254f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/aws-cicd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
- name: Send Docker Compose
uses: appleboy/scp-action@master
with:
host: ${{ secret.AWS_DEV_INSTANCE_HOST }}
host: ${{ secrets.AWS_DEV_INSTANCE_HOST }}
username: ubuntu
key: ${{ secrets.AWS_INSTANCE_PEM }}
port: 22
Expand All @@ -176,7 +176,7 @@ jobs:
- name: Extract Files on Server and Set Permissions
uses: appleboy/ssh-action@master
with:
host: ${{ secret.AWS_DEV_INSTANCE_HOST }}
host: ${{ secrets.AWS_DEV_INSTANCE_HOST }}
username: ubuntu
key: ${{ secrets.AWS_INSTANCE_PEM }}
port: 22
Expand All @@ -190,7 +190,7 @@ jobs:
- name: Set Permissions on Transferred Files
uses: appleboy/ssh-action@master
with:
host: ${{ secret.AWS_DEV_INSTANCE_HOST }}
host: ${{ secrets.AWS_DEV_INSTANCE_HOST }}
username: ubuntu
key: ${{ secrets.AWS_INSTANCE_PEM }}
port: 22
Expand All @@ -201,7 +201,7 @@ jobs:
- name: Deploy with Docker Compose
uses: appleboy/ssh-action@master
with:
host: ${{ secret.AWS_DEV_INSTANCE_HOST }}
host: ${{ secrets.AWS_DEV_INSTANCE_HOST }}
username: ubuntu
key: ${{ secrets.AWS_INSTANCE_PEM }}
port: 22
Expand Down

0 comments on commit c2f254f

Please sign in to comment.