https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: f0c7804bd08bbbc6ef05dc2b100e46d7c6ec3d7e authored by Lars Bilke on 13 August 2019, 11:54:45 UTC
[Release] Added changelog 6.2.1
Tip revision: f0c7804
.gitlab-ci.yml
image: alpine:3.4

before_script:
  - apk update && apk add openssl
  - wget https://github.com/spf13/hugo/releases/download/v0.18.1/hugo_0.18.1_Linux-64bit.tar.gz
  - tar xf hugo_0.18.1_Linux-64bit.tar.gz && cp ./hugo_0.18.1_linux_amd64/hugo_0.18.1_linux_amd64 /usr/bin/hugo
  - hugo version

pages:
  script:
  - cd web
  - (cd import; python import.py)
  - gulp build
  - hugo
  artifacts:
    paths:
    - web/public
  only:
  - web-hugo
back to top