blob: 67ce3c374a8e026530d284928bd37c8c172a429b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
name: Build Example Site
on: [push]
jobs:
hugo:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- name: Install Hugo
run: sudo apt-get install hugo
- name: Run Hugo
run: (cd exampleSite; hugo)
|