summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 513da4d83ab8556f546b88ac04df435d16c0f9de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image: elecnix/ikiwiki

test:
  stage: test
  script:
  - cd backend; ikiwiki --setup ikiwiki.setup
  only:
  - branches
  - tags

pages:
  stage: deploy
  script:
  - cd backend; ikiwiki --setup ikiwiki.setup
  artifacts:
    paths:
    - html
  only:
  - master