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 e05fd16 commit 0719637Copy full SHA for 0719637
.github/workflows/build.yaml
@@ -57,4 +57,16 @@ jobs:
57
WS_SMTP_PASS: ${{ secrets.WS_SMTP_PASS }}
58
WS_TASKS_DB_PASS: ${{ secrets.WS_TASKS_DB_PASS }}
59
WS_TASKS_SECRET_KEY: ${{ secrets.WS_TASKS_SECRET_KEY }}
60
+
61
+ - name: Setup Docker Context
62
+ run: |
63
+ mkdir -p ~/.ssh
64
+ echo "${{ secrets.GH_ACTIONS_SSH_KEY }}" > ~/.ssh/github_action
65
+ chmod 600 ~/.ssh/github_actions
66
+ ssh-add ~/.ssh/github_actions
67
68
+ docker context create dev2 --docker "host=ssh://[email protected]"
69
+ docker context use dev2
70
+ docker ps
71
72
0 commit comments