diff --git a/.circleci/config.yml b/.circleci/config.yml index bbd0ec9f..cfa94637 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,9 +49,9 @@ jobs: python3 -m venv venv . venv/bin/activate pip3 install python-frontmatter - curl https://raw.githubusercontent.com/plotly/documentation/source-design-merge/front-matter-ci.py > front-matter-ci.py + curl https://raw.githubusercontent.com/plotly/graphing-library-docs/master/front-matter-ci.py > front-matter-ci.py python front-matter-ci.py build/r - curl https://raw.githubusercontent.com/plotly/documentation/source-design-merge/check-or-enforce-order.py > check-or-enforce-order.py + curl https://raw.githubusercontent.com/plotly/graphing-library-docs/master/check-or-enforce-order.py > check-or-enforce-order.py python check-or-enforce-order.py build/r - run: name: deploy to plotly/r.docs:built @@ -75,12 +75,12 @@ jobs: name: trigger plotly/documentation build command: | if [ "${CIRCLE_BRANCH}" == "master" ]; then - git clone --depth=1 --branch=source-design-merge git@github.com:plotly/documentation.git - cd documentation + git clone --depth=1 git@github.com:plotly/graphing-library-docs.git + cd graphing-library-docs git config user.name plotlydocbot git config user.email accounts@plot.ly git commit --allow-empty -m "deploying https://github.com/plotly/plotly.r-docs/commit/${CIRCLE_SHA1}" git push cd .. - rm -rf documentation + rm -rf graphing-library-docs fi