image: debian
variables:
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- apt-get update -y curl
- curl https://github.com/gohugoio/hugo/releases/download/v0.114.0/hugo_extended_0.114.0_linux-amd64.deb
- dpkg -i hugo_extended_0.114.0_linux-amd64.deb
- curl https://get.volta.sh | bash
- npm install
test:
script:
- hugo
except:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
pages:
artifacts:
paths:
- public
only: