.gitlab-ci.yml
ASCII text
1image: python:latest 2 3before_script: 4- python -m pip install -r requirements.txt 5 6pages: 7script: 8- python build.py gl-pages-deploy 9artifacts: 10paths: 11- public 12rules: 13- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH 14 15