Create hugo github action
This commit is contained in:
parent
424ff16092
commit
face62569e
1 changed files with 12 additions and 0 deletions
12
.github/workflows/main.yml
vendored
Normal file
12
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
name: Build Example Site
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
hugo:
|
||||||
|
container: klakegg/hugo:ext-alpine
|
||||||
|
steps:
|
||||||
|
- name: Install Hugo
|
||||||
|
run: apt-get install hugo
|
||||||
|
- name: Run Hugo
|
||||||
|
run: (cd exampleSite; hugo)
|
Loading…
Reference in a new issue