Init commit
This commit is contained in:
commit
850dfe84b5
3 changed files with 29 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/.ikiwiki
|
||||
public/
|
16
.gitlab-ci.yml
Normal file
16
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
image: elecnix/ikiwiki
|
||||
|
||||
test:
|
||||
stage: test
|
||||
script: ikiwiki --setup .ikiwiki/ikiwiki.setup
|
||||
except:
|
||||
- master
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
script: ikiwiki --setup .ikiwiki/ikiwiki.setup
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- master
|
11
index.mdwn
Normal file
11
index.mdwn
Normal file
|
@ -0,0 +1,11 @@
|
|||
Welcome to [ikiwiki] hosted on [GitLab Pages](https://pages.gitlab.io)!
|
||||
|
||||
[[!toc ]]
|
||||
|
||||
# Heading 1
|
||||
|
||||
I'm a level 1 heading.
|
||||
|
||||
## Heading 2
|
||||
|
||||
I'm a level 2 heading.
|
Loading…
Reference in a new issue