Skip to content

Commit

Permalink
test different ssh setting
Browse files Browse the repository at this point in the history
  • Loading branch information
artcz committed Jan 19, 2025
1 parent bfd2d87 commit d3f7073
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ jobs:
with:
ssh-private-key: ${{ secrets.DEPLOY_SSH_KEY }}

- name: ssh keyscan
run: ssh-keyscan "internal.europython.eu" > ~/.ssh/known_hosts
- name: Set up ssh
run: |
mkdir -p ~/.ssh
echo "${{ secrets.DEPLOY_SSH_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan "internal.europython.eu" >> ~/.ssh/known_hosts
- name: Run deployment
run: make deploy/app

0 comments on commit d3f7073

Please sign in to comment.