The link to the whole project https://gitlab.com/ComplicatedPhenomenon/doubancrawler
I tested the generated document on local machine, it works fine
and gitlab page is as below (https://complicatedphenomenon.gitlab.io/doubancrawler/api.html)
Is there something wrong with .gitlab-ci.yml
?
image: python:3.7-alpine
test:
stage: test
script:
- pip install -r requirements2.txt
- cd docs/source/
- sphinx-build -b html . public
- mv public ../..
only:
- branches
except:
- master
pages:
stage: deploy
script:
- pip install -r requirements2.txt
- cd docs/source/
- sphinx-build -b html . public
- mv public ../..
artifacts:
paths:
- public
only:
- master