Create hugo github action

soper-book
Alex Shpak 2019-08-22 22:46:28 +02:00 committed by GitHub
parent 424ff16092
commit face62569e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

12
.github/workflows/main.yml vendored Normal file
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)