summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2023-03-24 12:18:52 +0100
committerGitHub <noreply@github.com>2023-03-24 12:18:52 +0100
commit0d3e00da8d5d19ffcfad15a5c7f2fd9e3e8a2b28 (patch)
treec67417a54e78f5c32aa592573b7dda1374643098
parent981fbe3873d7c1c121499bf83557f6d72425bf69 (diff)
[MRG] Remove copy of hidden folder in doc deploy (#450)
* cleanup deploy and remove hidden folder
-rw-r--r--.circleci/config.yml4
1 files changed, 0 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 7e15a65..d0e972c 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -117,10 +117,8 @@ jobs:
echo "Deploying dev docs for ${CIRCLE_BRANCH}.";
cd master
cp -a /tmp/build/html/* .;
- cp -a /tmp/build/html/.github/* .github/;
touch .nojekyll;
git add -A;
- git add -f .github/* ;
git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM}).";
git push origin master;
else
@@ -157,10 +155,8 @@ jobs:
git clean -xdf
echo "Deploying dev docs for ${CIRCLE_BRANCH}.";
cp -a /tmp/build/html/* .;
- cp -a /tmp/build/html/.github/* .github/;
touch .nojekyll;
git add -A;
- git add -f .github/* ;
git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM}).";
git push origin master;