blob: d08c34c3ebc7456aedd48572d0becf95213bd59c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# GitLab Pages
To start using GitLab Pages add to your project .gitlab-ci.yml with special pages job.
pages:
image: jekyll
script: jekyll build
artifacts:
paths:
- public
TODO
|