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

34 lines
1.1 KiB
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-latest:
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: |
LATEST_VERSION=`curl --silent "https://api.github.com/repos/gohugoio/hugo/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'`
VERSION_NO_PREFIX=`echo $LATEST_VERSION | cut -c 2-`
wget "https://github.com/gohugoio/hugo/releases/download/$LATEST_VERSION/hugo_extended_${VERSION_NO_PREFIX}_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 ../..
hugo-minimum:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install Hugo
run: |
2020-05-17 11:18:34 +00:00
wget "https://github.com/gohugoio/hugo/releases/download/v0.68.0/hugo_extended_0.68.0_Linux-64bit.deb" -O /tmp/hugo.deb
sudo dpkg -i /tmp/hugo.deb
- name: Run Hugo
working-directory: exampleSite
run: hugo --themesDir ../..