resume/.gitlab-ci.yml
2021-12-17 19:56:17 -08:00

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