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

This commit is contained in:
lagertonne 2024-11-11 19:19:57 +01:00
parent 11bbb77796
commit 5f97b6096b

View file

@ -20,7 +20,7 @@ jobs:
mkdir ~/.ssh mkdir ~/.ssh
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 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