Create hugo github action

This commit is contained in:
Alex Shpak
2019-08-22 22:46:28 +02:00
committed by GitHub
parent 424ff16092
commit face62569e
+12
View 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)