Loading .gitlab-ci.yml 0 → 100644 +21 −0 Original line number Diff line number Diff line # The Docker image that will be used to build your app image: python:3.11 # Functions that should be executed before the build script is run before_script: - pip install sphinx stages: - deploy-pages pages: stage: deploy-pages script: - cd doc - make html - cd .. - mkdir public - cp -r doc/build/html/* public artifacts: paths: - public Loading
.gitlab-ci.yml 0 → 100644 +21 −0 Original line number Diff line number Diff line # The Docker image that will be used to build your app image: python:3.11 # Functions that should be executed before the build script is run before_script: - pip install sphinx stages: - deploy-pages pages: stage: deploy-pages script: - cd doc - make html - cd .. - mkdir public - cp -r doc/build/html/* public artifacts: paths: - public