From 46c141794ca4c46f8af7115a58a291a83f5615d2 Mon Sep 17 00:00:00 2001 From: Adrien-Ba <45963338+Adrien-Ba@users.noreply.github.com> Date: Mon, 11 Oct 2021 11:54:19 +0200 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 98c6209..c0c00aa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -96,6 +96,7 @@ jobs: auth: username: adrienba password: $MYDOCKERHUB_PASSWORD + working_directory: /folder steps: - checkout - restore_cache: @@ -104,11 +105,14 @@ jobs: - npm-v1-dependencies - run: name: "yarn doc:build" - command: yarn doc:build + command: yarn doc:build > /folder/docs - save_cache: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} paths: - node_modules + - store_artifacts: + path: /folder/docs + destination: documentation