.gitlab-ci.yml
ASCII text
1image: python:latest 2 3pages: 4stage: deploy 5script: 6- python3 build.py gh-pages-deploy 7- python3 -m pip install -r requirements.txt 8artifacts: 9paths: 10- build 11only: 12- main 13