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

  artifacts:
    paths:
      - public

  only:
    - gitlab-ci