Skip to content

Instantly share code, notes, and snippets.

@Bertbk
Created October 3, 2019 08:31
Show Gist options
  • Save Bertbk/2e0d1a5bef4c7c575b3de482da43bc6b to your computer and use it in GitHub Desktop.
Save Bertbk/2e0d1a5bef4c7c575b3de482da43bc6b to your computer and use it in GitHub Desktop.
Gitlab CI for Hugo (+ Academic theme)
variables:
GIT_SUBMODULE_STRATEGY: recursive
GIT_SSL_NO_VERIFY: "true"
pages:
image: monachus/hugo:latest
before_script:
- apt-get update -y -qq
- apt-get install git -y -qq
- git submodule update --init --recursive
script:
- hugo --baseURL="${HUGO_BASEURL}"
artifacts:
paths:
- public
only:
- master
tags:
- dind
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment