aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: fd46f23e64c266c9e6ddbb36d81c30877584e39f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---

build:
  # Chosen more or less arbitrarily.
  image: hrektts/mdbook
  script:
    - apt-get update && apt-get install -y python3 git
    - ./proposals/check_index
    - ./build_html.sh
    - mv html public
  artifacts:
    paths:
      - public

pages:
  only:
    - main