Browse Source

Generating the documentation as a artefact

main
Logan 6 years ago
parent
commit
b21b3da0ee
  1. 11
      .circleci/config.yml

11
.circleci/config.yml

@ -9,6 +9,17 @@ jobs:
keys:
- npm-v1-dependencies-{{ checksum "yarn.lock" }}
- run: yarn global add node-gyp && yarn install
- run:
name: Creating Dummy Artifacts
command: echo "my artifact file" > /tmp/artifact-1;
mkdir /tmp/artifacts;
echo "my artifact files in a dir" > /tmp/artifacts/artifact-2;
- store_artifacts:
path: /tmp/artifact-1
destination: doc-server
- store_artifacts:
path: /tmp/artifacts
- run: yarn doc:build
- save_cache:
paths:
- ./node_modules

Loading…
Cancel
Save