Browse Source

Updated config.yml

main
Adrien-Ba 5 years ago
parent
commit
46c141794c
  1. 6
      .circleci/config.yml

6
.circleci/config.yml

@ -96,6 +96,7 @@ jobs:
auth: auth:
username: adrienba username: adrienba
password: $MYDOCKERHUB_PASSWORD password: $MYDOCKERHUB_PASSWORD
working_directory: /folder
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
@ -104,11 +105,14 @@ jobs:
- npm-v1-dependencies - npm-v1-dependencies
- run: - run:
name: "yarn doc:build" name: "yarn doc:build"
command: yarn doc:build
command: yarn doc:build > /folder/docs
- save_cache: - save_cache:
key: npm-v1-dependencies-{{ checksum "yarn.lock" }} key: npm-v1-dependencies-{{ checksum "yarn.lock" }}
paths: paths:
- node_modules - node_modules
- store_artifacts:
path: /folder/docs
destination: documentation

Loading…
Cancel
Save