Skip to content

Commit

Permalink
Specify tag_prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWillFlood committed Mar 25, 2024
1 parent 76c1e73 commit 39d4915
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using EntropyHub
using Documenter, DocumenterTools
OutdatedWarning.generate("src")
#OutdatedWarning.generate("src")

DocMeta.setdocmeta!(EntropyHub, :DocTestSetup, :(using EntropyHub); recursive=true)

Expand All @@ -11,10 +11,11 @@ makedocs(
#repo = Remotes.repourl("https://github.com/MattWillFlood/EntropyHub.jl"),
sitename="EntropyHub.jl",
doctest=false,
draft=false,
clean=true,
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", nothing) == "true",
canonical="https://mattwillflood.github.io/EntropyHub.jl",
canonical="https://mattwillflood.github.io/EntropyHub.jl/",
assets = ["assets/favicon.ico"],
collapselevel = 1,
),
Expand Down Expand Up @@ -43,7 +44,10 @@ makedocs(

deploydocs(
repo="github.com/MattWillFlood/EntropyHub.jl.git",
versions = ["stable" => "v^", "v#.#",],
versions = ["stable" => "v^", "v#.#"],
branch = "gh-pages",
tag_prefix = "v"

#versions = nothing,
)

Expand Down

0 comments on commit 39d4915

Please sign in to comment.