-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
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
docs: add example for Github Pages deployment; rewrite deployment section #4409
docs: add example for Github Pages deployment; rewrite deployment section #4409
Conversation
[V1] Deploy preview failure Built without sensitive environment variables with commit fcaa277 https://app.netlify.com/sites/docusaurus-1/deploys/605a6b318cb1c40007d0099f |
✔️ [V2] 🔨 Explore the source changes: 555e810 🔍 Inspect the deploy log: https://app.netlify.com/sites/docusaurus-2/deploys/61878d3653825d000714f53d 😎 Browse the preview: https://deploy-preview-4409--docusaurus-2.netlify.app |
⚡️ Lighthouse report for the changes in this PR:
Lighthouse ran on https://deploy-preview-4409--docusaurus-2.netlify.app/ |
The preview URL doesn't appear to reflect the changes in this PR?: https://deploy-preview-4409--docusaurus-2.netlify.app/classic/docs/deployment#triggering-deployment-with-github-actions |
Thanks! Appears on @MatanBobi @mrousavy could you help review this workflow please? That looks good to me |
Improve some comments and clarifies the file path beyond file name alone for each config file. Additionally removes the workflow path triggers as in practice these being updated shouldn't be triggering a re-run of the workflow again (assuming deterministic build from same input results in same output). If there is a need for such a manual trigger of the workflow is probably a better approach. Performing a build because workflow comments were modified only would be pointless for example.
website/docs/deployment.mdx
Outdated
This workflow assumes your documentation resided in `documentation` branch of your repository and your [publishing source](https://help.github.com/en/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site) is configured for `gh-pages` branch. | ||
This workflow assumes your documentation resides in the `documentation` branch of your repository and your [publishing source](https://help.github.com/en/github/working-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site) is configured for the `gh-pages` branch. | ||
|
||
Below are two approaches to deploying your docs with GitHub Actions. Follow the example based on if your deployment branch (eg `gh-pages`) is in: |
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.
"Follow the example based on if your deployment branch..." sounds a bit odd to me, maybe rephrase it to:
"Follow the correct example whether you're deployment branch is in one of the following:"
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.
I went with a different wording here: fcaa277
If that's not ok, let me know and I'll change it to what you prefer 👍
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.
This looks good to me though there are some stuff I'm not 100% familiar with (I'm not a github actions expert 😅)..
The comments are really helpful :)
When I came across the Docusaurus deployment docs, it was my first time using Github Actions myself. I am used to using Vercel or Netlify, but the project I was contributing docs to required Github Pages deployment. The original example config (before a recent improvement) was really intimidating and confusing compared to other deployment services, it felt very complicated. I know mine is more verbose now, but all the additional steps aren't required (no additional links to read), it's generic, copy/paste for the most part, there isn't anything user/account specific to it, nor third-party dependency like requiring generation of keys/tokens. I wish as such a user, that I had the workflow documented like this when I first came across it, instead of having to jump across the official docs and experiment. So keeping the comments is acceptable? (with syntax highlighting it shouldn't be a problem for experienced Github Actions Workflow users)
I'm happy to answer any questions about it that I can! 😁 Is there a way for Docusaurus to import these config files separately for maintenance? |
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.
That looks way too verbose for me
Users using Docusaurus want to get their pages online asap, not become GH actions CI experts and read so much text to figure out all the edge cases and config options.
I'm not against having a more exhaustive doc, but it shuld not be the first things most users see, and hidden in another tab or something imho
website/docs/deployment.mdx
Outdated
# https://github.com/actions/checkout/issues/13#issuecomment-724415212 | ||
# https://api.github.com/users/github-actions%5Bbot%5D | ||
GIT_USER: 'github-actions[bot]' | ||
GIT_EMAIL: '41898282+github-actions[bot]@users.noreply.github.com' |
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.
where does this email come from?
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.
It comes from where the comments above it clearly state (See the referenced github issue](actions/checkout#13 (comment))).
I had the same question when I was trying to resolve this properly and had to seek that information out.
There is a user and bot account, the ID value can be verified via the Github API, the e-mail matches what Github provides every user in their settings page to use instead of a personal e-mail:
Upstream doesn't see value including help comments for a copy/paste config under the basis that it adds friction to the viewer seeking guidance how to perform something they don't know.
Personally, I see no harm or friction added by the helpful contextual comments, especially on a page providing guidance on the config which implies that the reader seeking this information may benefit from that information 🤷♂️
I do not cover so many edge cases and config options. There's plenty more for this CI service, I just focused on what mattered for Docusaurus. It's what I wish Docusaurus had initially when I came across the docs pages (especially before the recent improvement on this deploy config), I had used other services but not GH Pages.
Verbosity under this context is not a bad thing and I doubt it contributes to friction, if anything it does quite the opposite. This is a page the user is ideally only needing to view content for once, it's an important step to document well, it's important for maintainers of the configs that have already cited a lack of experience and familiarity with it, they shouldn't have to go through the effort I did if it could all be inlined for everyones benefit like it was. Regardless, I've removed the comments as requested. I did not duplicate the prior config with comments to an additional tab, that would likely negatively impact the UX for the user (value of the comments aside) and add to maintenance. |
MatanBobi requested a rephrase during review.
My two cents: when I looked at the documentation for GitHub Actions, I was surprised that I had to manually setup a deploy key, just to use the builtin deploy tool. In the end, I used So I'd say anything that removes a manual step from the process is a step forward. I agree that users want to get their sites deployed and they don't care if it happens using the builtin deploy script or not. I somewhat agree with the verbosity argument, but it's orthogonal to the deployment tool decision: as a new user, I wouldn't care about caching or setting an alternate git user, so those should probably be moved out to an advanced example. Full disclosure: I'm in fact a new user who deployed their first docusaurus site today. If it's any help: here is the config I ended up with: https://github.com/twirphp/twirphp.github.io/blob/main/.github/workflows/deploy.yaml |
FWIW, I use On top of that, I do have some strong feelings towards exhaustively documenting the deployment process. We had closed down a few other PRs introducing new deployment options in the past few months. Still, GH pages remains as one of the most competitive options despite its extreme difficulty and limitation in configuration, so we may be biased and provide more writeup for it. |
Also, we now do have the
This is also doable. docusaurus/website/docs/guides/docs/sidebar.md Lines 688 to 700 in 41ef9da
|
On my end, the project I migrated Github Wiki docs for the decision went with Note: Github Actions specific, not docusaurus specific: Deployment became a bit more difficult with integrating preview builds for PRs as Github Actions security policies make that complicated (requires a separate build workflow and deploy workflow), although if you don't need to support deploy previews for PRs from untrusted contributors it's a non-issue. (this was also because we did this all via GH actions, even though previews are deployed to Netlify, as we are an organization and didn't want to incur billing if CI exceeded build minute limits) I wanted to resolve this PR but didn't receive continued review feedback. I'm not able to justify allocating the time to participate further in the discussion/review to get it into an acceptable state for merging unfortunately. If there is still interest in it, hopefully someone can take over :) I still stand by my reasons for verbosity being a positive and non-issue in practice given the context of the material and reader. |
Sure, I would be taking it over 👍 I do agree that we can have some explanations, probably in |
That'd be much appreciated! Thank you 👍 |
Thanks @Josh-Cena I don't have much experience with GH pages, existing actions ecosystem so it's time consuming to review this doc atm. We could probably restore our own GH action to deploy our site on a test subdomain, just for dogfooding (as an e2e test for the deploy command). https://github.com/facebook/docusaurus/tree/gh-pages |
This is in a good shape to merge. Made some polishings to the deploy docs in general. |
Motivation
Similar to the recent PR #4263 , as a new user to both Github Actions and Docusaurus; the Github Actions deployment example seemed more complicated than it needed to be. I learned how to write a simpler deployment workflow without needing to follow additional steps of setting up an SSH key to deploy.
In that same PR it was advised that it may still be desirable to deploy to an external / remote repository instead, so I've kept the existing workflow example as is, and placed it in a 2nd tab.
remote
example to share more in common with the new example, such as bumping the action versions from@1
to@2
?details
.mkdocs-material
has some nice examples of this.Have you read the Contributing Guidelines on pull requests?
Yes
Test Plan
Docs contribution only.