22 lines
568 B
Julia
22 lines
568 B
Julia
using DocumenterGitHubActions
|
|
using Documenter
|
|
|
|
makedocs(;
|
|
modules=[DocumenterGitHubActions],
|
|
authors="tester",
|
|
repo="https://github.com/tester/DocumenterGitHubActions.jl/blob/{commit}{path}#L{line}",
|
|
sitename="DocumenterGitHubActions.jl",
|
|
format=Documenter.HTML(;
|
|
prettyurls=get(ENV, "CI", "false") == "true",
|
|
canonical="https://tester.github.io/DocumenterGitHubActions.jl",
|
|
assets=String[],
|
|
),
|
|
pages=[
|
|
"Home" => "index.md",
|
|
],
|
|
)
|
|
|
|
deploydocs(;
|
|
repo="github.com/tester/DocumenterGitHubActions.jl",
|
|
)
|