8000 Build docs with Circle CI by QuLogic · Pull Request #8893 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Build docs with Circle CI #8893

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jul 21, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: Delete existing files before deploying docs.
Otherwise, random files might be left over, such as the old gallery.html
that was removed when switching to sphinx-gallery.
  • Loading branch information
QuLogic committed Jul 20, 2017
commit 9b05b6c81d4cf68602a829ca9b653705d81cae1d
3 changes: 2 additions & 1 deletion .circleci/deploy-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ cd devdocs
git checkout --orphan gh-pages || true
git reset --hard first_commit

cp -R ../doc/build/html/* .
git rm -rf .
cp -R ../doc/build/html/. .
touch .nojekyll

git config user.email "MatplotlibCircleBot@nomail"
Expand Down
0