19 lines
372 B
YAML
19 lines
372 B
YAML
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
HUGO_ENV: production
|
|
setup-hugo:
|
|
stage: setup-hugo
|
|
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
|
script:
|
|
- cd ${CI_PROJECT_DIR}
|
|
- hugo --minify -t book
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
|
|
# runs:
|
|
# using: 'node16'
|
|
# main: 'lib/index.js'
|
|
# branding:
|
|
# icon: 'package'
|
|
# color: 'yellow' |