From 4e6f5c4b75e71bbd40295b294a7af4e3c1650a75 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Tue, 22 Jul 2025 18:53:43 -0400 Subject: [PATCH] Correction for remote SSH action. --- .gitea/workflows/hugo_site_deployment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/hugo_site_deployment.yml b/.gitea/workflows/hugo_site_deployment.yml index 1677c54..7ca457d 100644 --- a/.gitea/workflows/hugo_site_deployment.yml +++ b/.gitea/workflows/hugo_site_deployment.yml @@ -179,10 +179,10 @@ jobs: - name: Restart Hugo Container uses: appleboy/ssh-action@v1.2.2 with: - host: ${{ secrets.HUGO_SITE_HOST }} + host: 192.168.1.254 username: ${{ secrets.HUGO_DEPLOY_USERNAME }} password: ${{ secrets.HUGO_DEPLOY_PASSWORD }} - key: ${{ secrets.VPS_DEPLOY_KEY }} + key_path: ${{ steps.setup_rsync.outputs.ssh_key_path }} script: | docker container restart hugo - name: Gotify Notification