From 2723a568eae9408e8c11e9f3b633bae469b67af8 Mon Sep 17 00:00:00 2001 From: Ben Hays Date: Sun, 22 Oct 2023 22:22:16 -0400 Subject: [PATCH] Final Fix for Actions --- .gitea/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index bcad41f..9f79744 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -27,5 +27,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: + - name: pre-reqs + run: apt update; apt install -y sshpass - name: Deploy to Server - run: apt update; apt install -y sshpass; sshpass -p "M0dderStella" scp -r public/* root@10.0.1.15:/var/www/html/ \ No newline at end of file + run: sshpass -p "M0dderStella" scp -r public/* root@10.0.1.15:/var/www/html/ \ No newline at end of file