oops need a build command for jekyll now lmao
This commit is contained in:
parent
320dfc8593
commit
0f97653e43
1 changed files with 18 additions and 0 deletions
18
.gitlab-ci.yml
Normal file
18
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# requiring the environment of Ruby 2.3.x
|
||||||
|
image: ruby:2.3
|
||||||
|
# add bundle cache to 'vendor' for speeding up builds
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- vendor/
|
||||||
|
before_script:
|
||||||
|
- bundle install --path vendor
|
||||||
|
# the 'pages' job will deploy and build your site to the 'public' path
|
||||||
|
pages:
|
||||||
|
stage: deploy
|
||||||
|
script:
|
||||||
|
- bundle exec jekyll build -d public/
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
only:
|
||||||
|
- master # this job will affect only the 'master' branch
|
Loading…
Add table
Reference in a new issue