This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
nico
/
emacs.cafe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Add .gitlab-ci.yml
master
Nicolas Petton
3 years ago
parent
33bb89a4cc
commit
eff25334ec
1 changed files
with
28 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+28
-0
.gitlab-ci.yml
+ 28
- 0
.gitlab-ci.yml
View File
@ -0,0 +1,28 @@
image
:
ruby:2.3
variables:
JEKYLL_ENV
:
production
before_script:
-
bundle install
test:
stage
:
test
script:
-
bundle exec jekyll build -d test
artifacts:
paths:
-
test
except:
-
master
pages:
stage
:
deploy
script:
-
bundle exec jekyll build -d public
artifacts:
paths:
-
public
only:
-
master
Write
Preview
Loading…
Cancel
Save