.gitlab-ci.yml
ASCII text
1image: busybox:latest 2 3pages: 4stage: deploy 5image: python:latest 6script: 7- echo "The site will be deployed to $CI_PAGES_URL" 8- python3 build.py gh-pages-deploy 9- python3 -m pip install -r requirements.txt 10artifacts: 11paths: 12- build 13only: 14- pages 15