Update .github/workflows/main.yml
Some checks failed
/ run pull (push) Failing after 2s

This commit is contained in:
Fiky B 2024-02-15 03:33:41 +00:00
parent 7d0f231f15
commit f5889f57af

View File

@ -12,7 +12,7 @@ jobs:
- name: install ssh keys - name: install ssh keys
# check this thread to understand why its needed: # check this thread to understand why its needed:
# https://stackoverflow.com/a/70447517 # https://stackoverflow.com/a/70447517
run: echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && ssh-keyscan -H ${{ secrets.SSH_HOST }} run: touch ~/.ssh/id_rsa && echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && ssh-keyscan -H ${{ secrets.SSH_HOST }}
- name: connect and pull - name: connect and pull
run: echo "${{ secrets.SSH_USER }}" run: echo "${{ secrets.SSH_USER }}"
- name: cleanup - name: cleanup