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

12 lines
387 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:00:11 +00:00
mkdir .ssh && \
echo $DEPLOY_SSH_KEY > .ssh/id_ed25519 && \
cat nest-known-hosts-cache.txt > .ssh/known_hosts && \
2024-04-07 01:00:11 +00:00
chmod -R go-rwx .ssh && \
2024-04-07 01:06:42 +00:00
ssh -n -o UserKnownHostsFile=nest-known-hosts-cache.txt @hackclub.app