mirror of
https://gitlab.com/MisterBiggs/blog.git
synced 2025-08-13 08:41:32 +00:00
Sites
bin
.gitlab-ci.yml
.gitmodules
15 lines
202 B
YAML
15 lines
202 B
YAML
|
|
image: monachus/hugo
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
pages:
|
|
script:
|
|
- cd exampleSite
|
|
- hugo --themesDir=../.. -d ../public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master |