| 1234567891011121314151617181920212223242526 |
- name: Build with Hugo
- on: [push, pull_request]
- jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- hugo-version:
- - 'latest'
- - '0.158.0'
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: true # Fetch Hugo themes (true OR recursive)
- fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- - name: Setup Hugo
- uses: peaceiris/actions-hugo@v3
- with:
- hugo-version: ${{ matrix.hugo-version }}
- extended: true
- - name: Run Hugo
- run: hugo --minify
|