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 6014b73 commit 77d1ba8Copy full SHA for 77d1ba8
.github/workflows/cd.yml
@@ -43,11 +43,12 @@ jobs:
43
steps:
44
- name: Checkout
45
uses: actions/checkout@v4
46
+ - name: Add ssh-key
47
+ run: |
48
+ ssh-add - <<< ${{ secrets.DEPLOYMENT_SSH_KEY }}
49
- name: Create Context
- env:
- DEPLOYMENT_HOST: ${{ secrets.DEPLOYMENT_HOST }}
50
run: |
- docker context create shapez-vortex --docker host=ssh://root@${{ env.DEPLOYMENT_HOST }}
51
+ docker context create shapez-vortex --docker host=ssh://root@${{ secrets.DEPLOYMENT_HOST }}
52
docker context use shapez-vortex
53
- name: Deploy
54
working-directory: ./resources/deployment
0 commit comments