fix(ci): correct YAML syntax for Gitea Actions
Some checks failed
Hugo CI/CD / deploy (push) Has been cancelled

This commit is contained in:
2026-02-14 01:00:20 -05:00
parent 927f238358
commit faf618e7fd

View File

@@ -6,47 +6,27 @@ on:
pull_request: pull_request:
branches: [ main ] branches: [ main ]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: true
jobs: jobs:
build: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
- name: Setup Hugo - name: Restart Hugo server on production
uses: peaceiris/actions-hugo@v3 uses: appleboy/ssh-action@v1.0.3
with: with:
hugo-version: '0.134.0' host: 172.20.1.231
extended: true username: root
password: ${{ secrets.SERVER_PASSWORD }}
- name: Build with Hugo script: |
env: cd /var/www/blog
HUGO_ENVIRONMENT: production git pull origin main
HUGO_ENV: production pkill -f "hugo server" || true
run: hugo --minify sleep 2
nohup hugo server --bind 0.0.0.0 --port 1313 --baseURL=https://dustin.coffee --appendPort=false --disableLiveReload > /var/log/hugo.log 2>&1 &
- name: Deploy to live Hugo server sleep 3
if: github.ref == 'refs/heads/main' curl -f https://dustin.coffee || echo "Health check failed - check /var/log/hugo.log"
uses: appleboy/ssh-action@v1.0.0
with:
host: 172.20.1.231
username: root
password: ${{ secrets.SERVER_PASSWORD }}
script: |
cd /var/www/blog
git pull origin main
pkill -f "hugo server" || true
nohup hugo server --bind 0.0.0.0 --port 1313 --baseURL=https://dustin.coffee --appendPort=false --disableLiveReload > /var/log/hugo.log 2>&1 &
sleep 2
curl -f https://dustin.coffee || echo "Health check failed"