hugo-book-theme/.github/workflows/main.yml
2019-08-22 23:06:13 +02:00

16 lines
293 B
YAML

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 ../..