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

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

variables:
  GIT_SUBMODULE_STRATEGY: recursive

test:
  script:
  - hugo -b "https://edavidaja.gitlab.io/docter/" -c "exampleSite/content" --config "exampleSite/config.toml" -t "docter" --themesDir ./..
  except:
  - master

pages:
  script:
  - hugo -b "https://edavidaja.gitlab.io/docter/" -c "exampleSite/content" --config "exampleSite/config.toml" -t "docter" --themesDir ./.. 
  artifacts:
    paths:
    - public
  only:
  - master