aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2018-02-02 22:14:23 -0600
committerMatt Rude <[email protected]>2018-02-02 22:14:23 -0600
commit0c0cde3923440b2d293549c7e430a38082cc0457 (patch)
treea717c5104a5cc23dc6c2e01faf75d5c853573208 /.gitlab-ci.yml
parentd65bec368ab5d2db704cc05e47f62d356f9f0dbc (diff)
parent56f17ba98e2fdc0bf0b855c2af37008db263cd85 (diff)
downloadxmpp-site-lite-0c0cde3923440b2d293549c7e430a38082cc0457.tar.gz
xmpp-site-lite-0c0cde3923440b2d293549c7e430a38082cc0457.tar.bz2
xmpp-site-lite-0c0cde3923440b2d293549c7e430a38082cc0457.zip
Merge branch 'master' of github.com:mattrude/xmpp-site-lite
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml31
1 files changed, 0 insertions, 31 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 3e9cf7f..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-# This file is a template, and might need editing before it works on your project.
-# Template project: https://gitlab.com/pages/jekyll
-# Docs: https://docs.gitlab.com/ce/pages/
-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
-