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 • 200 B
ASCII text
        
            
1
image: python:latest
2
3
pages:
4
stage: deploy
5
script:
6
- python3 -m pip install -r requirements.txt
7
- python3 build.py gh-pages-deploy
8
artifacts:
9
paths:
10
- build
11
only:
12
- main
13