From bdc93b888714f6a46d77780127413cc82adc304d Mon Sep 17 00:00:00 2001 From: 9pfs <9pfs@amcforum.wiki> Date: Sat, 6 Apr 2024 18:02:31 -0700 Subject: [PATCH] Make life easier by not updating+upgrading when ssh is already installed :) --- website-deploy-action.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/website-deploy-action.sh b/website-deploy-action.sh index bf370c1..21d28b8 100755 --- a/website-deploy-action.sh +++ b/website-deploy-action.sh @@ -1,8 +1,9 @@ #!/bin/bash # Assuming that this is a Debian container. -apt-get update && \ -apt-get upgrade -y && \ -apt install -y openssh && \ +# apt-get update && \ +# apt-get upgrade -y && \ +# Apparently ssh is installed, lol +# apt install -y openssh-client && \ mkdir .ssh && \ echo $DEPLOY_SSH_KEY > .ssh/id_ed25519 && \ chmod -R go-rwx .ssh && \