base64 encode the ssh key
Some checks failed
Deploy website to nest / deploy (push) Failing after 2s

This commit is contained in:
9pfs 2024-04-06 18:24:27 -07:00
parent 5912ade62a
commit b0c11dfa5d
Signed by: 9pfs
SSH key fingerprint: SHA256:TOcGxMQCfy4VvRM8AzgXErKXdkAtaTcpGXgYMpyoJoY

View file

@ -5,7 +5,7 @@
# Apparently ssh is installed, lol
# apt install -y openssh-client && \
mkdir ~/.ssh && \
echo $DEPLOY_SSH_KEY > ~/.ssh/id_ed25519 && \
echo $DEPLOY_SSH_KEY | base64 -d > ~/.ssh/id_ed25519 && \
cat nest-known-hosts-cache.txt > ~/.ssh/known_hosts && \
chmod -R go-rwx ~/.ssh && \
ssh -T -o UserKnownHostsFile=nest-known-hosts-cache.txt h@hackclub.app