blob: fcd4c25745aacc13efe3505d7c82bd88d3514333 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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)
|