Skip to content

Commit

Permalink
fix(actions): correct scp port option
Browse files Browse the repository at this point in the history
Should be -P
  • Loading branch information
PaulYakow committed Feb 9, 2024
1 parent 15971ee commit 057d017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Copy compose file
run: |
scp -i deploy_key -p $SSH_PORT -o StrictHostKeyChecking=no ${{ github.workspace }}/docker-compose.yaml $HOST:$DEPLOY_DIRECTORY/docker-compose.yaml
scp -i deploy_key -P $SSH_PORT -o StrictHostKeyChecking=no ${{ github.workspace }}/docker-compose.yaml $HOST:$DEPLOY_DIRECTORY/
- name: Create .env file into deploy directory
run: |
Expand Down

0 comments on commit 057d017

Please sign in to comment.