Skip to content

Commit

Permalink
use manual ssh config again in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nemanjam committed Jun 7, 2024
1 parent fa4a8e9 commit 6304e4d
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/bash__deploy-nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,22 @@ jobs:
run: yarn build

- name: Set up SSH config
id: ssh-foo
uses: invi5H/ssh-action@v1
with:
NAME: arm1
SSH_HOST: ${{ secrets.REMOTE_HOST }}
SSH_USER: ${{ secrets.REMOTE_USERNAME }}
SSH_KEY: ${{ secrets.REMOTE_KEY_ED25519 }}
SSH_PORT: ${{ secrets.REMOTE_PORT }}
run: |
# Set up SSH key
mkdir -p ~/.ssh
echo "${{ secrets.REMOTE_KEY_ED25519 }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
# Set up SSH config
echo "Host arm1" > ~/.ssh/config
echo " HostName ${{ secrets.REMOTE_HOST }}" >> ~/.ssh/config
echo " User ${{ secrets.REMOTE_USERNAME }}" >> ~/.ssh/config
echo " IdentityFile ~/.ssh/id_ed25519" >> ~/.ssh/config
echo " Port ${{ secrets.REMOTE_PORT }}" >> ~/.ssh/config
chmod 600 ~/.ssh/config
# Add SSH server key to known_hosts
ssh-keyscan -H ${{ secrets.REMOTE_HOST }} >> ~/.ssh/known_hosts
- name: Run bash file with yarn
run: yarn deploy:nginx

0 comments on commit 6304e4d

Please sign in to comment.