summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 5a26ed94ed4d5422a53cc00cf8ce6b915c678123 (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 make
    - make site
  artifacts:
    paths:
      - public

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