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: 55198dc0622a6f38872605ce8f27f57dea5b2f2d (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_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