hugo-book/.github/workflows/main.yml
2019-08-22 22:51:32 +02:00

13 lines
206 B
YAML

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)