.gitlab-ci.yml 554 字节
Newer Older
Y
yyexplore 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# This file is a template, and might need editing before it works on your project.
---
# All available Hugo versions are listed here:
# https://gitlab.com/pages/hugo/container_registry
#image: swr.cn-north-4.myhuaweicloud.com/codechina/hugo_extended:0.75.1
image: swr.cn-north-4.myhuaweicloud.com/codechina/klakegg_hugo:0.75.1-ext-ubuntu

#before_script:
#  - apk add --update --no-cache git


#variables:
#  GIT_SUBMODULE_STRATEGY: recursive


pages:
  script:
    - hugo
M
miykael 已提交
19 20
  tags:
    - pages
Y
yyexplore 已提交
21 22 23 24 25
  artifacts:
    paths:
      - public
  only:
    - master
M
miykael 已提交
26