Created
October 3, 2019 08:31
-
-
Save Bertbk/2e0d1a5bef4c7c575b3de482da43bc6b to your computer and use it in GitHub Desktop.
Gitlab CI for Hugo (+ Academic theme)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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