fix permissions on ssh key
Some checks failed
Build LaTeX packages / build (push) Failing after 28s
Build LaTeX packages / deploy-pages (push) Has been skipped

This commit is contained in:
Maximilian Keßler 2023-10-18 16:03:51 +02:00
parent 3858718041
commit 476b57d2ba
Signed by: max
GPG Key ID: BCC5A619923C0BA5

View File

@ -1,10 +1,12 @@
set -e
# Set up ssh private key
echo "$DEPLOY_SSH_KEY" > ~/.ssh/id_ed25519
mkdir -p ~/.ssh
chmod 700 ~/.ssh
echo "$DEPLOY_SSH_KEY" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
# Set up remote host key fingerprint
echo "git.abstractnonsen.se ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAufJTq206GOv0D8gHs2o3eDusLNWaB0U7JRhUYnux9B" >> ~/.ssh/known_hosts
chmod 644 ~/.ssh/known_hosts