-
Notifications
You must be signed in to change notification settings - Fork 401
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
chore: Forced re-creation of API docs on gh-pages #2307
Conversation
mv out docs | ||
sleep 1 | ||
git add docs | ||
git commit -m "docs: update for ${PACKAGE_VERSION}" | ||
git push origin gh-pages | ||
git push --force origin 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.
do we want to --force-with-lease
instead?
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.
My understanding, based upon https://stackoverflow.com/a/52823955, is that it doesn't offer any benefit. We don't make any changes to the gh-pages
branch other than to push up new API docs builds. Do you agree? Or do you still think we should try --force-with-lease
?
This PR resolves #2301. Instead of trying to merge in changes to the
gh-pages
branch, we simply recreate it every time.