summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: ae0b5ffe21ece3cc808013e1c63bc4338e6d7cc9 (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
image: alpine:latest

stages:
  - build
  - publish

make-site:
  stage: build
  script:
    - apk add --no-cache bash make
    - make site
  artifacts:
    paths:
      - public

pages:
  stage: publish
  dependencies:
    - make-site
  only:
    - master
  script:
    - "true"
  artifacts:
    paths:
      - public