summaryrefslogtreecommitdiff
path: root/vendor/gitlab-ci-yml/Pages/Octopress.gitlab-ci.yml
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-07-06 10:17:31 +0200
committerRémy Coutable <remy@rymai.me>2016-07-06 10:17:31 +0200
commita91e4a904281c515825b5a08fa56001632aaa5e3 (patch)
tree86533421e2a3d389ecf30438b70072efcd71d556 /vendor/gitlab-ci-yml/Pages/Octopress.gitlab-ci.yml
parentcfd5870b62e9d76e564ffc64db1d1281b4a363bb (diff)
downloadgitlab-ce-update-templates-for-8-10.tar.gz
Add and update .gitignore & .gitlab-ci.yml templates for 8.10update-templates-for-8-10
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'vendor/gitlab-ci-yml/Pages/Octopress.gitlab-ci.yml')
-rw-r--r--vendor/gitlab-ci-yml/Pages/Octopress.gitlab-ci.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/gitlab-ci-yml/Pages/Octopress.gitlab-ci.yml b/vendor/gitlab-ci-yml/Pages/Octopress.gitlab-ci.yml
new file mode 100644
index 00000000000..4762ec9acfd
--- /dev/null
+++ b/vendor/gitlab-ci-yml/Pages/Octopress.gitlab-ci.yml
@@ -0,0 +1,15 @@
+# Full project: https://gitlab.com/pages/octopress
+image: ruby:2.3
+
+pages:
+ script:
+ - apt-get update -qq && apt-get install -qq nodejs
+ - bundle install -j4
+ - bundle exec rake generate
+ - mv public .public
+ - mv .public/octopress public
+ artifacts:
+ paths:
+ - public
+ only:
+ - master