From d966de651abd79ad2308f6dd24e4ca43899902b9 Mon Sep 17 00:00:00 2001 From: 9pfs <9pfs@amcforum.wiki> Date: Sat, 6 Apr 2024 18:21:47 -0700 Subject: [PATCH] Finally figured it out, yay --- website-deploy-action.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/website-deploy-action.sh b/website-deploy-action.sh index 08ecf35..e9a3ec1 100755 --- a/website-deploy-action.sh +++ b/website-deploy-action.sh @@ -4,8 +4,8 @@ # apt-get upgrade -y && \ # Apparently ssh is installed, lol # apt install -y openssh-client && \ -mkdir .ssh && \ -echo $DEPLOY_SSH_KEY > .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 +mkdir ~/.ssh && \ +echo $DEPLOY_SSH_KEY > ~/.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 -i h@hackclub.app