hugo-book/.github/workflows/main.yml

19 lines
432 B
YAML
Raw Normal View History

2019-09-05 21:44:19 +00:00
name: Build with Hugo
2019-08-22 20:46:28 +00:00
on: [push]
jobs:
hugo:
2019-08-22 21:07:54 +00:00
runs-on: ubuntu-latest
2019-08-22 20:46:28 +00:00
steps:
2019-08-22 20:54:29 +00:00
- uses: actions/checkout@master
2019-08-22 21:01:33 +00:00
2019-08-22 20:54:29 +00:00
- name: Install Hugo
run: |
wget https://github.com/gohugoio/hugo/releases/download/v0.59.1/hugo_extended_0.59.1_Linux-64bit.deb -O /tmp/hugo.deb
sudo dpkg -i /tmp/hugo.deb
2019-08-22 21:01:33 +00:00
2019-08-22 20:54:29 +00:00
- name: Run Hugo
2019-08-22 21:01:33 +00:00
working-directory: exampleSite
run: hugo --themesDir ../..