2022-10-15 18:37:01 -07:00
|
|
|
name: Build
|
2020-07-24 22:43:35 -07:00
|
|
|
|
2022-10-15 11:43:48 -07:00
|
|
|
on:
|
|
|
|
pull_request:
|
2020-07-24 22:43:35 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-10-15 11:43:48 -07:00
|
|
|
name: Build
|
2020-07-24 22:43:35 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-16 08:51:32 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-07-24 23:19:45 -07:00
|
|
|
- name: Setup Hugo
|
|
|
|
uses: peaceiris/actions-hugo@v2
|
|
|
|
with:
|
2023-04-19 00:29:31 -07:00
|
|
|
hugo-version: '0.108.0'
|
2020-07-24 23:19:45 -07:00
|
|
|
extended: true
|
|
|
|
|
2022-10-15 11:43:48 -07:00
|
|
|
- name: Hugo Build
|
|
|
|
run: hugo --minify
|
|
|
|
|