Fix ssh key permissions
Some checks failed
/ deploy (push) Has been cancelled

This commit is contained in:
lagertonne 2024-11-11 19:23:15 +01:00
parent 226bfc3f2c
commit 0dabd1c848

View file

@ -18,9 +18,10 @@ jobs:
- name: Populate relevant files - name: Populate relevant files
run: | run: |
mkdir ~/.ssh 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 ) command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )
eval $(ssh-agent -s) eval $(ssh-agent -s)
echo "${{ secrets.C3LF_SSH_TESTING }}" > ~/.ssh/id_ed25519 && chmod 0600 ~/.ssh/id_ed25519
ssh-add ~/.ssh/id_ed25519 ssh-add ~/.ssh/id_ed25519
ssh-add -L ssh-add -L
echo "andromeda.lab.or.it ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDXPoO0PE+B9PYwbGaLo98zhbmjAkp6eBtVeZe43v/+T" >> ~/.ssh/known_hosts echo "andromeda.lab.or.it ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDXPoO0PE+B9PYwbGaLo98zhbmjAkp6eBtVeZe43v/+T" >> ~/.ssh/known_hosts