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: f425d04030a4798d58e56d1a9ba502febc9925f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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