Gitlab CI Deployment
This commit is contained in:
parent
6bf5aa707f
commit
22a2f57ca7
1 changed files with 14 additions and 0 deletions
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
stages:
|
||||
- deploy
|
||||
|
||||
deploy-master:
|
||||
stage: deploy
|
||||
tags:
|
||||
- website
|
||||
only:
|
||||
- master
|
||||
script:
|
||||
- jekyll build
|
||||
- rsync --recursive _site/ /srv/deploy/
|
||||
|
||||
|
Loading…
Reference in a new issue