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 84154b9 commit 0a360ecCopy full SHA for 0a360ec
.gitlab-ci.yml
@@ -0,0 +1,34 @@
1
+default:
2
+ image: ruby:latest
3
+ cache:
4
+ paths:
5
+ - vendor/ruby
6
+ before_script:
7
+ - bundle init
8
+ - bundle config set path vendor/ruby
9
+ - bundle add jekyll
10
+ - bundle install
11
+
12
+stages:
13
+ - test
14
+ - deploy
15
16
+test-pages:
17
+ stage: test
18
+ script:
19
+ - bundle exec jekyll build -d test
20
+ artifacts:
21
22
23
+ except:
24
+ - main
25
26
+pages:
27
+ stage: deploy
28
29
+ - bundle exec jekyll build -d public
30
31
32
+ - public
33
+ only:
34
0 commit comments