Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.gitlab-ci.yml - gitlab.com/kskarthik/monopriv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f16ac318380c8f44885d1e857731107b704da6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: registry.gitlab.com/pages/hugo:latest

pages:

 script:
  - apk add git
  - git clone https://github.com/gohugoio/hugoBasicExample && cd hugoBasicExample 
  - git submodule add -f https://gitlab.com/kskarthik/monopriv themes/monopriv
  - mv themes/monopriv/exampleSite/config.toml .
  - hugo -b https://kskarthik.gitlab.io/monopriv/
  - cd .. && mv hugoBasicExample/public .
 artifacts:
    paths:
    - public
 only:
    - master