summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 957ded8864c5c4d87d68ffb4c4237ecc493e8eac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
image: debian:latest

pages:
  stage: deploy
  script:
  - apt-get update
  - apt-get install -y --no-install-recommends gettext bc
  - cd public
  - ./generate-stats-page.sh > index.html
  artifacts:
    paths:
    - public
  only:
  - master