Skip to content

Use a working Github ribbon. #11

Use a working Github ribbon.

Use a working Github ribbon. #11

Workflow file for this run

name: Build site
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-24.04
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: '0.108.0'
extended: true
- name: Build
run: hugo
- uses: actions/upload-artifact@v4
with:
name: website
path: './public'