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 • 304 B
ASCII text
        
            
1
image: busybox:latest
2
3
build:
4
stage: build
5
image: python:latest
6
script:
7
- python build.py gh-pages-deploy
8
9
pages:
10
stage: deploy
11
script:
12
- echo "The site will be deployed to $CI_PAGES_URL"
13
artifacts:
14
paths:
15
- build
16
rules:
17
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
18
19