From bc9ae5e0cf279eea5aba9269116e9ceef53c8104 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Tue, 22 Jul 2025 16:06:26 -0400 Subject: [PATCH] Messing around with rsync. --- .gitea/workflows/hugo_site_deployment.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/hugo_site_deployment.yml b/.gitea/workflows/hugo_site_deployment.yml index bbce8b3..34e98f0 100644 --- a/.gitea/workflows/hugo_site_deployment.yml +++ b/.gitea/workflows/hugo_site_deployment.yml @@ -164,9 +164,16 @@ jobs: gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}' notification_title: 'GITEA: Hugo' notification_message: 'Starting Hugo deployment... 🤞🏽' + - name: Stopping Hugo Container + uses: appleboy/ssh-action@v1.0.3 + with: + host: ${{ secrets.HUGO_SITE_HOST }} + username: ${{ secrets.HUGO_DEPLOY_USERNAME }} + password: ${{ secrets.HUGO_DEPLOY_PASSWORD }} + script: | + docker version - name: Generate Hugo Site & Deploy for Docker env: - VPS_DEPLOY_KEY: ${{ secrets.VPS_DEPLOY_KEY }} VPS_DEPLOY_USER: ${{ secrets.HUGO_DEPLOY_USERNAME }} VPS_DEPLOY_HOST: ${{ secrets.HUGO_SITE_HOST }} VPS_DEPLOY_DEST: ${{ secrets.VPS_DEPLOY_DEST }}