image: ubuntu:14.04 pages: stage: deploy script: - apt-get update -y - apt-get install luarocks -y - apt-get install python-pip -y - pip install sphinx - apt-get install rsync -y - apt-get install make -y - luarocks install ldoc - cd nerv/doc; make html; cd ../ - ldoc .; cd ../ - rsync -av nerv/doc/build/html/ public/ artifacts: paths: - public only: - master