From d0b9a34c8bb3fed48522d67ee0b13f35b72e470f Mon Sep 17 00:00:00 2001 From: Stan Bondi Date: Tue, 12 Mar 2019 13:57:48 +0200 Subject: [PATCH] Fix no book subdir (#159) * Fix no book subdir * attach workspace to checkout location --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 357bffcb14..e18dd7bcc7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,7 +25,7 @@ jobs: steps: - checkout - attach_workspace: - at: book + at: . - add_ssh_keys: fingerprints: - "a6:a6:e2:be:a3:94:3e:4c:9d:51:25:f6:98:f9:0c:a4" @@ -43,7 +43,7 @@ jobs: TMP_DIR=$(mktemp -d /tmp/ghpages_XXXXXX) echo "Copying book files to temporary location $TMP_DIR" - cp -R $DEST_PATH $TMP_DIR + cp -R $DEST_PATH/* $DEST_PATH/.nojekyll $TMP_DIR REMOTE=$(git remote get-url origin)