This commit is contained in:
parent
226bfc3f2c
commit
0dabd1c848
1 changed files with 2 additions and 1 deletions
|
@ -18,9 +18,10 @@ jobs:
|
|||
- name: Populate relevant files
|
||||
run: |
|
||||
mkdir ~/.ssh
|
||||
echo "${{ secrets.C3LF_SSH_TESTING }}" > ~/.ssh/id_ed25519
|
||||
chmod 0600 ~/.ssh/id_ed25519
|
||||
command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )
|
||||
eval $(ssh-agent -s)
|
||||
echo "${{ secrets.C3LF_SSH_TESTING }}" > ~/.ssh/id_ed25519 && chmod 0600 ~/.ssh/id_ed25519
|
||||
ssh-add ~/.ssh/id_ed25519
|
||||
ssh-add -L
|
||||
echo "andromeda.lab.or.it ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDXPoO0PE+B9PYwbGaLo98zhbmjAkp6eBtVeZe43v/+T" >> ~/.ssh/known_hosts
|
||||
|
|
Loading…
Reference in a new issue