diff options
author | Sander Vrijders <[email protected]> | 2018-03-26 16:25:14 +0200 |
---|---|---|
committer | Sander Vrijders <[email protected]> | 2018-03-28 16:41:40 +0200 |
commit | a1bddf0ab2cd7bee30b1f0dc1575c0b8c532e157 (patch) | |
tree | 65172a461889ca93053187494a565423a54f112e /.gitlab-ci.yml | |
parent | a95c3b376053ed00f0e7184dbd228598a9aaf50f (diff) | |
download | rumba-a1bddf0ab2cd7bee30b1f0dc1575c0b8c532e157.tar.gz rumba-a1bddf0ab2cd7bee30b1f0dc1575c0b8c532e157.zip |
rumba: Add Rumba documentation website
This adds a documentation website for Rumba which is triggered
automatically after changes to master.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1f8d116..746475a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,3 +7,14 @@ before_script: irati-test: script: - python examples/vpn.py + +pages: + stage: deploy + script: + - pip install sphinx + - sphinx-build doc/ public/ + artifacts: + paths: + - public + only: + - doc |