Skip to content
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

Hint on registering generated documentation with DocumentationGeneratorRegistry #2548

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/src/man/hosting.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,17 @@ The `permissions:` line above is described in the
an alternative is to give GitHub workflows write permissions under the repo settings, e.g.,
`https://github.com/<USER>/<REPO>.jl/settings/actions`.

## JuliaHub

[JuliaHub](https://juliahub.com/ui/Home) provides an [overview on registered Julia packages](https://https://juliahub.com/ui/Packages).
j-fu marked this conversation as resolved.
Show resolved Hide resolved
It tries to build package documentation on its own, and if this fails, a stripped down version of the documentation
is generated which just consists of the README and the docstrings of the package.
In order to point JuliaHub to the documentation already hosted e.g. on the `gh-pages` branch
of the package repository, it is possible to register the link to the hosted documentation with
[DocumentationGeneratorRegistry](https://github.com/JuliaDocs/DocumentationGeneratorRegistry).
The JuliaHub documentation link is updated after releasing a new package version.


## Woodpecker CI

To run a documentation build from Woodpecker CI, one should create an access token
Expand Down
Loading