-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
Milestone
Description
I've switched over to using mkdocs for my personal page and am really liking the output.
I'd like to request that gh-deploy be extended to support personal GitHub pages also. Unlike project pages, personal pages must have repository names <username>.github.io, and the project is published to the master branch instead of gh-pages. Everything works fine if I do it manually so I presume supporting personal pages automatically should not be too difficult.
Edit: I have a hacky Makefile that emulates gh-deploy (assumes that the markdown source is on a branch called mkdocs and deploys to master):
site:
git checkout mkdocs
mkdocs build
git checkout master
cp -R site/* .
rm -rf site
echo Ready to commit and push