mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
16 lines
271 B
Bash
Executable File
16 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
# -*- coding: utf-8 -*-
|
|
|
|
rm -rf doc/build
|
|
mkdir doc/build
|
|
cd doc/build
|
|
git init
|
|
|
|
sphinx-build -b html -d doctrees .. .
|
|
touch .nojekyll
|
|
echo "/doctrees/" > .gitignore
|
|
|
|
git add .
|
|
git commit --message "Automatic generation" || echo
|
|
git push -f ../.. HEAD:gh-pages
|