h.hackclub.app/website-deploy-action.sh

12 lines
408 B
Bash
Raw Normal View History

2024-04-07 00:56:50 +00:00
#!/bin/bash
2024-04-07 01:00:11 +00:00
# Assuming that this is a Debian container.
# apt-get update && \
# apt-get upgrade -y && \
# Apparently ssh is installed, lol
# apt install -y openssh-client && \
2024-04-07 01:21:47 +00:00
mkdir ~/.ssh && \
2024-04-07 01:24:27 +00:00
echo $DEPLOY_SSH_KEY | base64 -d > ~/.ssh/id_ed25519 && \
2024-04-07 01:21:47 +00:00
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