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: 30a33c58a96cc67e748b16e776639fd03a868ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 ..
  - mkdir public
  - mv hugoBasicExample/public public 
 artifacts:
    paths:
    - public
 only:
    - master