We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29d102f commit a835fd7Copy full SHA for a835fd7
.gitlab-ci.yml
@@ -3,6 +3,20 @@ image: python:3.7
3
stages:
4
- deploy
5
6
+pages:
7
+ stage: deploy
8
+ script:
9
+ - pip3 install sphinx
10
+ - python3 setup.py build_sphinx
11
+ - mkdir public
12
+ - mv build/sphinx/html/* public/
13
+ artifacts:
14
+ expire_in: 1 day
15
+ paths:
16
+ - public
17
+ #only:
18
+ # - master
19
+
20
build_test_image:
21
stage: deploy
22
image:
0 commit comments