summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: b227ef4a036036cfc5b3bd2694751edeeefc4a22 (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/*.js public/*.css

  artifacts:
    paths:
      - public

  only:
    - gitlab-ci