Skip to content

fix: build

fix: build #5

Workflow file for this run

name: Build website
on:
pull_request:
push:
branches: [main]
env:
HUGO_VERSION: "v0.136.1" # https://github.com/gohugoio/hugo/releases
jobs:
deploy:
runs-on: ubuntu-latest
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: ${{ env.HUGO_VERSION }}
- name: Build website
run: hugo