Add Gitlab CI file
This commit is contained in:
parent
996b1b2e4a
commit
2ba4c09ed5
2 changed files with 17 additions and 0 deletions
15
.gitlab-ci.yml
Normal file
15
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
image: alpine:latest
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
script:
|
||||
- mkdir .public
|
||||
- ls
|
||||
- cp -r * .public
|
||||
- mv .public public
|
||||
- ls public
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
only:
|
||||
- gh-pages
|
2
config.yml
Normal file
2
config.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
".gitlab-ci.yml":
|
||||
layout: false
|
Loading…
Reference in a new issue