2017-03-29 07:31:39 +08:00
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
working_directory: ~/ionic-native/
|
|
|
|
docker:
|
|
|
|
- image: node:7
|
|
|
|
branches:
|
|
|
|
- only:
|
|
|
|
- cci2
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run:
|
|
|
|
name: Install node modules
|
2017-03-29 07:32:07 +08:00
|
|
|
command: npm i
|
2017-03-29 07:37:05 +08:00
|
|
|
- run: npm run build
|
|
|
|
update_docs:
|
2017-03-29 07:31:39 +08:00
|
|
|
working_directory: ~/ionic-native/
|
|
|
|
docker:
|
|
|
|
- image: node:7
|
|
|
|
branches:
|
|
|
|
- only:
|
|
|
|
- cci2 # set this to master
|
|
|
|
steps:
|
|
|
|
- run:
|
|
|
|
name: Prepare ionic-site repo
|
|
|
|
command: ./scripts/docs/prepare.sh
|
|
|
|
- save_cache:
|
|
|
|
paths:
|
|
|
|
- ~/ionic-site/
|
|
|
|
- checkout
|
|
|
|
- run:
|
|
|
|
name: Install node modules
|
|
|
|
command: npm i
|
|
|
|
- run:
|
|
|
|
name: Update docs
|
|
|
|
command: ./scripts/docs/update_docs.sh
|