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:
|
2020-07-24 23:19:45 -07:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Hugo
|
|
|
|
uses: peaceiris/actions-hugo@v2
|
|
|
|
with:
|
2022-10-11 19:11:55 -07:00
|
|
|
hugo-version: '0.104.3'
|
2020-07-24 23:19:45 -07:00
|
|
|
extended: true
|
|
|
|
|
2022-10-15 11:43:48 -07:00
|
|
|
- name: Hugo Build
|
|
|
|
run: hugo --minify
|
|
|
|
|