PkgTemplates.jl/test/fixtures/DocumenterGitHubActions/docs/make.jl
2019-11-10 11:15:56 +07:00

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",
)