Skip to content

Commit

Permalink
Merge pull request #160 from AnkanSaha/dev
Browse files Browse the repository at this point in the history
Fix SCP command in deployment script to copy all files and directorie…
  • Loading branch information
AnkanSaha authored Apr 7, 2024
2 parents 3e424ba + 5ff758f commit 2d2ab7a
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 @@ -30,7 +30,7 @@ jobs:
- name: Copy code to VM
run: |
sudo scp -o StrictHostKeyChecking=no -i private_key.pem -r ./* ${{ secrets.USERNAME }}@${{ secrets.VM_IP }}:~/App # Copies all files and directories to the home directory of the user on VM
sudo scp -o StrictHostKeyChecking=no -i private_key.pem -r ./ ${{ secrets.USERNAME }}@${{ secrets.VM_IP }}:~/App # Copies all files and directories to the home directory of the user on VM
- name: Clean Up
run: |
Expand Down

0 comments on commit 2d2ab7a

Please sign in to comment.