Skip to content

Commit

Permalink
fix GITHUB_REPOSITORY
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg authored Oct 24, 2024
1 parent b51c665 commit bb14fd5
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -819,12 +819,15 @@ function main()
end

@info "deploydocs"
deploydocs(
repo = "github.com/JuliaPlots/PlotDocs.jl.git",
versions = ["stable" => "v^", "v#.#", "dev" => "dev", "latest" => "dev"],
push_preview = true,
forcepush = true,
)
repo = "github.com/JuliaPlots/PlotDocs.jl.git" # see https://documenter.juliadocs.org/stable/man/hosting/#Out-of-repo-deployment
withenv("GITHUB_REPOSITORY" => repo) do
deploydocs(;
versions = ["stable" => "v^", "v#.#", "dev" => "dev", "latest" => "dev"],
push_preview = true,
forcepush = true,
repo,
)
end
end

main()

0 comments on commit bb14fd5

Please sign in to comment.