We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ad6fb commit c9c003eCopy full SHA for c9c003e
.gitlab-ci.yml
@@ -0,0 +1,31 @@
1
+# This file is a template, and might need editing before it works on your project.
2
+# Template project: https://gitlab.com/pages/jekyll
3
+# Docs: https://docs.gitlab.com/ce/pages/
4
+image: ruby:2.3
5
+
6
+variables:
7
+ JEKYLL_ENV: production
8
9
+before_script:
10
+- bundle install
11
12
+test:
13
+ stage: test
14
+ script:
15
+ - bundle exec jekyll build -d test
16
+ artifacts:
17
+ paths:
18
+ - test
19
+ except:
20
+ - master
21
22
+pages:
23
+ stage: deploy
24
25
+ - bundle exec jekyll build -d public
26
27
28
+ - public
29
+ only:
30
31
0 commit comments