summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: 635f08b3a6b7866e18cf658597df841428c099f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
        working-directory: exampleSite
        run: hugo --themesDir ../..