Skip to content

chore: actions-gh-pages #261

chore: actions-gh-pages

chore: actions-gh-pages #261

Workflow file for this run

name: Build GitHub Pages
"on": [push, workflow_dispatch]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: false # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.135.0'
extended: true
- run: hugo --minify
- uses: peaceiris/[email protected]
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'