aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: 85c088b174d65bf82a0a3d8644361f1058e91111 (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-latest
    steps:
      - uses: actions/checkout@master

      - name: Install Hugo
        run: sudo apt-get install hugo

      - name: Run Hugo
        working-directory: exampleSite
        run: hugo --themesDir ../..