From e15a37a8f3033cc5e2f840d94aa0f1d86b411b50 Mon Sep 17 00:00:00 2001 From: shockrah Date: Thu, 5 Sep 2024 21:06:06 -0700 Subject: [PATCH] Testing anothe rmethod of pushing files to remote --- .gitea/workflows/build-and-deploy.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/build-and-deploy.yml b/.gitea/workflows/build-and-deploy.yml index 32adc0c..e11ab53 100644 --- a/.gitea/workflows/build-and-deploy.yml +++ b/.gitea/workflows/build-and-deploy.yml @@ -17,13 +17,10 @@ jobs: uses: actions/checkout@v4 - name: Build website content run: hugo - - name: Setup ssh agent - run: eval $(ssh-agent -s) - - name: Add private key to agent - run: echo "${{ secrets.PRIVATE_KEY }}" | ssh-add - > /dev/null - - name: Create tmp .ssh directory - run: mkdir -p ~/.ssh - - name: Ensure perms on tmp .ssh directory - run: chmod 0700 ~/.ssh - - name: SCP Files to resume web server - run: "scp -o UserKnownHostsFile=/dev/null -r public/ $ssh_target:$remote_path" + - name: SSH setup and copying + run: | + eval $(ssh-agent -s) \ + echo "${{ secrets.PRIVATE_KEY }}" | ssh-add - > /dev/null \ + mkdir -p ~/.ssh \ + chmod 0700 ~/.ssh \ + scp -o UserKnownHostsFile=/dev/null -r public/ $ssh_target:$remote_path