summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: 9fcddbe29c4f5bad9063984f011d892d5d026561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
name: Build Example Site

on: [push]

jobs:
  hugo:
    runs-on: ubuntu-18.04
    steps:
    - name: Install Hugo
      run: sudo apt-get install hugo
    - name: Run Hugo
      run: (cd exampleSite; hugo)