24 lines
419 B
YAML
24 lines
419 B
YAML
|
on: [push]
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
- run: echo All Good
|
||
|
- uses: actions/checkout@v4
|
||
|
with:
|
||
|
submodules: true
|
||
|
fetch-depth: 0
|
||
|
- run: ls -la
|
||
|
- name: Setup Hugo
|
||
|
uses: peaceiris/actions-hugo@v2
|
||
|
with:
|
||
|
hugo-version: '0.119.0'
|
||
|
extended: true
|
||
|
|
||
|
- name: Build
|
||
|
run: hugo --minify
|
||
|
- run: ls -la public
|
||
|
|
||
|
|
||
|
|