Use Hugo 0.111.1

master
Will Faught 2 years ago
parent 81e020d2d9
commit 72547c30e3

@ -6,6 +6,8 @@ defaults:
shell: bash shell: bash
jobs: jobs:
build-linux: build-linux:
env:
HUGO_VERSION: 0.111.1
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
@ -13,7 +15,9 @@ jobs:
with: with:
submodules: recursive submodules: recursive
- name: Setup Hugo - name: Setup Hugo
run: sudo apt-get install hugo run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- id: pages - id: pages
name: Setup Pages name: Setup Pages
uses: actions/configure-pages@v2 uses: actions/configure-pages@v2

Loading…
Cancel
Save