From 19e05b590159c6449bf7c3fcdccb6f4de4f7dd0e Mon Sep 17 00:00:00 2001 From: shockrah Date: Thu, 5 Sep 2024 21:17:48 -0700 Subject: [PATCH] Using gh action --- .gitea/workflows/build-and-deploy.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/build-and-deploy.yml b/.gitea/workflows/build-and-deploy.yml index f95ed0f..b601d01 100644 --- a/.gitea/workflows/build-and-deploy.yml +++ b/.gitea/workflows/build-and-deploy.yml @@ -17,13 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Build website content run: hugo - - name: Create tmp .ssh directory - run: mkdir -p ~/.ssh - - name: Ensure perms on tmp .ssh directory - run: chmod 0700 ~/.ssh - - name: Setup ssh agent - run: ssh-agent -a /tmp/ssh_agent.sock -s > /dev/null - - name: Add private key to agent - run: echo "${{ secrets.PRIVATE_KEY }}" | ssh-add - > /dev/null + - name: Setup SSH to copy files up to remote webserver + uses: webfactory/ssh-agent@v0.9.0 - name: SCP Files to resume web server run: "scp -o UserKnownHostsFile=/dev/null -r public/ $ssh_target:$remote_path"