A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 .gitlab-ci.yml

View raw Download
text/plain • 281 B
ASCII text
        
            
1
image: busybox:latest
2
3
pages:
4
stage: deploy
5
image: python:latest
6
script:
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
10
artifacts:
11
paths:
12
- build
13
only:
14
- pages
15