We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d4925 commit 6592dcaCopy full SHA for 6592dca
.github/workflows/deploy.yaml
@@ -18,7 +18,9 @@ jobs:
18
with:
19
ssh-private-key: ${{ secrets.DEPLOY_SSH_KEY }}
20
21
+ - name: Copy over the docker compose file
22
+ run: |
23
+ scp -o StrictHostKeyChecking=no compose.prod.yaml deploytest@zenful.cloud:guestbook/compose.yaml
24
- name: Deploy code via SSH
25
run: |
- DOCKER_HOST="ssh://deploytest@zenful.cloud" docker-compose up -d
- #ssh -o StrictHostKeyChecking=no deploytest@zenful.cloud "cd guestbook && docker compose up -d"
26
+ ssh -o StrictHostKeyChecking=no deploytest@zenful.cloud "cd guestbook && docker compose up -d"
0 commit comments