resume/.gitlab-ci.yml

25 lines
290 B
YAML
Raw Normal View History

2019-08-20 02:57:47 +00:00
image: registry.gitlab.com/pages/hugo:latest
2019-08-20 02:55:29 +00:00
stages:
2021-11-06 03:15:11 +00:00
- build
2021-02-22 21:35:27 +00:00
- vps
2019-08-20 02:57:47 +00:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2019-08-20 02:55:29 +00:00
# Only because it's broken right now
2021-11-06 03:15:11 +00:00
build:
stage: build
only:
refs:
- master
script:
- hugo
artifacts:
paths:
2019-08-20 02:55:29 +00:00
- public
only:
- master