We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1600261 commit db56cf0Copy full SHA for db56cf0
1 file changed
.github/workflows/deploy.yml
@@ -62,8 +62,13 @@ jobs:
62
63
- name: Copy Ansible files to droplet
64
run: |
65
+ ssh -o StrictHostKeyChecking=no \
66
+ ${{ secrets.ANSIBLE_DROPLET_USER }}@${{ secrets.ANSIBLE_DROPLET_HOST }} \
67
+ "mkdir -p ~/ansible"
68
scp -o StrictHostKeyChecking=no \
- -r ./ansible/ \
69
+ .ansible/ansible.cfg \
70
+ .ansible/inventory_aws_ec2.yaml \
71
+ .ansible/deploy-docker-new-user.yaml \
72
${{ secrets.ANSIBLE_DROPLET_USER }}@${{ secrets.ANSIBLE_DROPLET_HOST }}:~/ansible/
73
74
- name: Copy EC2 SSH key to droplet
0 commit comments