I followed the GitHub instructions to create a gh-pages branch for a javascript library. The library's build script uses JsDocs to create a docs directory - I would like my GitHub page to be able to reference those documents.
I have been manually copying the docs directory from master to gh-pages, but I think a better solution would be to either:
- Set up my
gh-pagesbranch to reference thedocsdirectory onmaster, or - Create some type of hook that copies only the
docsdirectory togh-pageswhenever someone commits tomaster
How can I provide this documentation to users with minimal effort and lessen the chance of falling out of sync?