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

pages:
  script:
    - git submodule init && git submodule update
    - mkdir public && cp -r db modules resources index.html public
    - gzip -k public/*.html public/resources/**/*.js public/resources/**/*.css

  artifacts:
    paths:
      - public

  only:
    - gitlab-ci