Skip to content

Commit

Permalink
fix: resolve SSH host key verification error in CI/CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
SuhJae committed Sep 2, 2024
1 parent 9a42fb6 commit 775384e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: ssh-keyscan -H ${{ secrets.SERVER_IP }} >> ~/.ssh/known_hosts

- name: Copy Files via SCP
run: scp -r ./ ${{ secrets.SERVER_USER }}@${{ secrets.SERVER_IP }}:${{ secrets.SERVER_DEPLOY_PATH }}
run: scp -r ./* ${{ secrets.SERVER_USER }}@${{ secrets.SERVER_IP }}:${{ secrets.SERVER_DEPLOY_PATH }}

- name: Restart Docker Compose
run: |
Expand Down

0 comments on commit 775384e

Please sign in to comment.