action update #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# www.kr.freebsd.org site build: for every push, | |
# run hugo to verify. | |
# | |
name: Check | |
# Controls when the action will run. | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Hugo setup | |
uses: peaceiris/actions-hugo@v3 | |
- name: Hugo build | |
run: hugo --logLevel debug --minify |