Skip to content

Commit

Permalink
Add script to update documentation website
Browse files Browse the repository at this point in the history
  • Loading branch information
foonathan committed Oct 2, 2019
1 parent 1eb9e77 commit c27b59c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions doc/publish-docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh
# builds documentation and publishes it
# run in root of repository, assumes `git worktree add doc/html gh-pages`

doxygen doc/Doxyfile
cd doc/html
git add --all
git commit -am"Update documentation"
git push --force origin gh-pages

0 comments on commit c27b59c

Please sign in to comment.