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 bfd2d87 commit d3f7073Copy full SHA for d3f7073
.github/workflows/deploy.yml
@@ -21,8 +21,12 @@ jobs:
21
with:
22
ssh-private-key: ${{ secrets.DEPLOY_SSH_KEY }}
23
24
- - name: ssh keyscan
25
- run: ssh-keyscan "internal.europython.eu" > ~/.ssh/known_hosts
+ - name: Set up ssh
+ run: |
26
+ mkdir -p ~/.ssh
27
+ echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/id_ed25519
28
+ chmod 600 ~/.ssh/id_ed25519
29
+ ssh-keyscan "internal.europython.eu" >> ~/.ssh/known_hosts
30
31
- name: Run deployment
32
run: make deploy/app
0 commit comments