-
Notifications
You must be signed in to change notification settings - Fork 433
Fix document upload after #138. #154
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
Conversation
The documents are generated inside a docker image, in a previous change (googleapis#138), the path for the generated docs was changed. This script should have been changed at the same time. While testing I found out that there was another tiny problem, the documents were never uploaded because the change detection was broken. Fix that too <blush>.
|
Ping, you seem to have missed this one. |
.gitignore
Outdated
| # The Doxygen-generated documentation goes here: | ||
| bigtable/doc/html/ | ||
| doc/html/ | ||
| gh-pages/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this a directory? This should be a branch name, so it shouldn't be in a .gitignore, unless I'm missing something.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The script creates a temporary clone of the gh-pages branch in the gh-pages directory, and copies the (potentially new) documentation into it:
Happy to name it something else if you think that is confusing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, sorry, missed that entirely. Yes, please, let's call it something different like docs-build so that others are not confused reading this.
Thanks to @mbrukman, this is less confusing indeed.
|
PTAL. |
mbrukman
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
The documents are generated inside a docker image, in a previous
change (#138), the path for the generated docs was changed. This
script should have been changed at the same time.
While testing I found out that there was another tiny problem, the
documents were never uploaded because the change detection was
broken. Fix that too .