From e3f6ed76b046244b2b5b9bcbc528dbc99a54e04c Mon Sep 17 00:00:00 2001 From: Ben Hays Date: Sun, 22 Oct 2023 22:10:43 -0400 Subject: [PATCH] Use sshpass --- .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 af76109..8b10d26 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -27,5 +27,7 @@ jobs: runs-on: ubuntu-latest needs: build steps: + - name: Install pre-reqs + run: apt install sshpass - name: Deploy to Server - run: scp public/* root:M0dderStella@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