Hello - I’m working on deploying documentation for my package.
The contents of my make.jl
file are as follows:
push!(LOAD_PATH,"../src/")
using Documenter, RadarQC
makedocs(sitename="RadarQC.jl",
modules= [RadarQC],
pages = [
"Home" => "index.md"
],
format = Documenter.HTML(prettyurls = false))
deploydocs(;
repo="github.com/irslushy/RadarQC.jl.git",
deploy_config="../.github/workflows/Documentation.yml",
target="build",
push_preview=false,
devbranch="main"
)
And when I attempt to run this, I get
ERROR: LoadError: MethodError: no method matching deploy_folder(::String; branch::String, branch_previews::String, devbranch::String, devurl::String, push_preview::Bool, repo::String, repo_previews::String, tag_prefix::String)
Closest candidates are:
deploy_folder(::Documenter.Woodpecker; repo, repo_previews, branch, branch_previews, devbranch, push_preview, devurl, tag_prefix, kwargs...)
@ Documenter ~/.julia/packages/Documenter/2OZOh/src/deployconfig.jl:993
deploy_folder(::Documenter.Buildkite; repo, repo_previews, devbranch, push_preview, devurl, branch, branch_previews, tag_prefix, kwargs...)
@ Documenter ~/.julia/packages/Documenter/2OZOh/src/deployconfig.jl:740
deploy_folder(::Documenter.GitLab; repo, repo_previews, devbranch, push_preview, devurl, branch, branch_previews, tag_prefix, kwargs...)
@ Documenter ~/.julia/packages/Documenter/2OZOh/src/deployconfig.jl:597
...
Does anyone have thoughts on this?