summaryrefslogtreecommitdiff
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2021-12-17 08:40:44 +0100
committerGitHub <noreply@github.com>2021-12-17 08:40:44 +0100
commitde5abace7dbff576e92b14319b845b70db469309 (patch)
treeb59d9958ead0d69f4f8f2d6849938530562cc6f1 /.circleci/config.yml
parent4f63ea223e27667d4bb275601301d12871fb475f (diff)
[WIP] Debug doc missing file on merge (#324)
* update delease file and add it to doc ith mystè_parser * typos in release file * update PR template * test debug doc build * test debug doc build * wrog circleci
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 96c1fbf..32c211f 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -106,8 +106,10 @@ 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/*.html ;
git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM}).";
git push origin master;
else
@@ -144,8 +146,10 @@ 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/*.html ;
git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM}).";
git push origin master;