mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-22 03:19:25 +00:00
13 lines
206 B
YAML
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)
|