summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorKen <kenny@madgloryint.com>2017-11-01 13:27:17 -0400
committerKen <kenny@madgloryint.com>2017-11-01 13:27:17 -0400
commit1385a3cefc7312a3f18e8d78a854411b53c75e67 (patch)
treef27292fc20215f68c25ab09830947da56fb732a9 /.circleci
parent0f19a09673be2bb79426e21a6460d5095f43287a (diff)
downloadvainglory-docs-1385a3cefc7312a3f18e8d78a854411b53c75e67.tar.gz
vainglory-docs-1385a3cefc7312a3f18e8d78a854411b53c75e67.zip
Initial commit of the new logs.
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/circle.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/.circleci/circle.yml b/.circleci/circle.yml
deleted file mode 100644
index cf44ba8..0000000
--- a/.circleci/circle.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-version: 2
-jobs:
- build:
- working_directory: ~/mern-starter
- docker:
- - image: circleci/node:8.4.0
- steps:
- - checkout
- # - run:
- # name: update-npm
- # command: 'sudo npm install -g npm@latest'
- - restore_cache:
- key: dependency-cache-{{ checksum "package.json" }}
- - run:
- name: install-npm
- command: yarn
- - save_cache:
- key: dependency-cache-{{ checksum "package.json" }}
- paths:
- - ./node_modules
- - run:
- name: build-docs
- command: |
- pushd docs &&
- ../node_modules/.bin/gitbook install &&
- ../node_modules/.bin/gitbook build &&
- popd &&
- git checkout gh-pages &&
- git pull origin gh-pages --rebase &&
- cp -R docs/_book/* . &&
- git clean -fx node_modules &&
- git clean -fx docs &&
- git add . &&
- git commit -a -m "Update docs" &&
- git push origin gh-pages