Browse Source

Updated config.yml

main
HenriBoulnois 5 years ago
parent
commit
f3fa43a65c
  1. 5
      .circleci/config.yml

5
.circleci/config.yml

@ -85,20 +85,19 @@ jobs:
auth: auth:
username: henriboulnois username: henriboulnois
password: $DOCKERHUB_PASSWORD password: $DOCKERHUB_PASSWORD
working_directory: /build
steps: steps:
- checkout - checkout
- restore_cache: - restore_cache:
keys: keys:
- npm-v2-dependencies-{{ checksum "yarn.lock" }} - npm-v2-dependencies-{{ checksum "yarn.lock" }}
- npm-v2-dependencies - npm-v2-dependencies
- run: yarn doc:build > /build/doc;
- run: yarn doc:build
- save_cache: - save_cache:
paths: paths:
- node_modules - node_modules
key: npm-v2-dependencies-{{ checksum "yarn.lock" }} key: npm-v2-dependencies-{{ checksum "yarn.lock" }}
- store_artifacts: - store_artifacts:
path: /build/doc
path: docs
destination: build destination: build
workflows: workflows:

Loading…
Cancel
Save