summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: deff60a8e594fcf06535e09c849de1f9f8249642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
image: elecnix/ikiwiki

before_script:
  - apt-get update
  - apt-get install -y curl git

test:
  stage: test
  script:
  - cd backend
  - sed -i s/gitorigin_branch:.origin/gitorigin_branch:/ ikiwiki.setup
  - ikiwiki --setup ikiwiki.setup
  - cd ..
  - mv html public
  only:
  - branches
  - tags

pages:
  stage: deploy
  script:
  - cd backend
  - sed -i s/gitorigin_branch:.origin/gitorigin_branch:/ ikiwiki.setup
  - ikiwiki --setup ikiwiki.setup
  - cd ..
  - mv html public
  artifacts:
    paths:
    - public
  only:
  - master