25 lines
290 B
YAML
25 lines
290 B
YAML
image: registry.gitlab.com/pages/hugo:latest
|
|
|
|
stages:
|
|
- build
|
|
- vps
|
|
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
# Only because it's broken right now
|
|
build:
|
|
stage: build
|
|
only:
|
|
refs:
|
|
- master
|
|
script:
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|
|
|