blob: 33995bf82124a9deab6a116a4bba5abf97fdd66e (
plain) (
tree)
|
|
image: ubuntu:14.04
pages:
stage: deploy
script:
- apt-get update
- apt-get install luarocks
- apt-get install python-sphinx
- apt-get install rsync
- luarocks install ldoc
- cd nerv/doc; make html; cd ../
- ldoc .; cd ../
- rsync -av nerv/doc/build/html/ public/
artifacts:
paths:
- public
only:
- master
|