[HUGO] Automated PR for workflow-test-run_2025-07-21T13-30-22 - #10 #10

Merged
gitea-sonarqube-bot merged 1 commits from workflow-test-run_2025-07-21T13-30-22 into main 2025-07-22 15:19:50 -04:00
+20 -6
View File
@@ -155,6 +155,21 @@ jobs:
extended: true extended: true
- name: Setup rsync - name: Setup rsync
uses: GuillaumeFalourd/setup-rsync@v1.2 uses: GuillaumeFalourd/setup-rsync@v1.2
- name: Gotify Notification
uses: eikendev/gotify-action@master
with:
gotify_api_base: '${{ secrets.RINOA_GOTIFY_URL }}'
gotify_app_token: '${{ secrets.RINOA_RUNNER_GOTIFY_TOKEN }}'
notification_title: 'GITEA: Hugo'
notification_message: 'Starting Hugo deployment... 🤞🏽'
- name: Stop 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 container stop hugo
- name: Generate Hugo Site & Deploy for Docker - name: Generate Hugo Site & Deploy for Docker
env: env:
VPS_DEPLOY_KEY: ${{ secrets.VPS_DEPLOY_KEY }} VPS_DEPLOY_KEY: ${{ secrets.VPS_DEPLOY_KEY }}
@@ -162,22 +177,21 @@ jobs:
VPS_DEPLOY_HOST: ${{ secrets.HUGO_SITE_HOST }} VPS_DEPLOY_HOST: ${{ secrets.HUGO_SITE_HOST }}
VPS_DEPLOY_DEST: ${{ secrets.VPS_DEPLOY_DEST }} VPS_DEPLOY_DEST: ${{ secrets.VPS_DEPLOY_DEST }}
run: | run: |
mkdir .ssh echo ${{ secrets.VPS_DEPLOY_KEY }} > id_rsa_deploy
echo "${{ secrets.VPS_DEPLOY_KEY }}" > .ssh/id_rsa_deploy chmod 600 id_rsa_deploy
chmod 600 .ssh/id_rsa_deploy
hugo version hugo version
hugo --minify --source . hugo --minify --source .
rsync --progress -avz -e 'ssh -i .ssh/id_rsa_deploy -o StrictHostKeyChecking=no' \ rsync --progress -avz -e 'ssh -i id_rsa_deploy -o StrictHostKeyChecking=no' \
./public \ ./public \
${VPS_DEPLOY_USER}@${VPS_DEPLOY_HOST}:${VPS_DEPLOY_DEST} ${VPS_DEPLOY_USER}@${VPS_DEPLOY_HOST}:${VPS_DEPLOY_DEST}
- name: Restart Hugo Container - name: Start Hugo Container
uses: appleboy/ssh-action@v1.0.3 uses: appleboy/ssh-action@v1.0.3
with: with:
host: ${{ secrets.HUGO_SITE_HOST }} host: ${{ secrets.HUGO_SITE_HOST }}
username: ${{ secrets.HUGO_DEPLOY_USERNAME }} username: ${{ secrets.HUGO_DEPLOY_USERNAME }}
password: ${{ secrets.HUGO_DEPLOY_PASSWORD }} password: ${{ secrets.HUGO_DEPLOY_PASSWORD }}
script: | script: |
docker restart hugo docker container start hugo
- name: Gotify Notification - name: Gotify Notification
uses: eikendev/gotify-action@master uses: eikendev/gotify-action@master
with: with: