commit 5faeb3e704b567c33dd3eef7c43492095f8b855a
parent 9b054ace04a8aa21364bde899385112e8c6af2e5
Author: Erik Loualiche <eloualic@umn.edu>
Date: Tue, 20 May 2025 13:58:24 -0500
try to fix doc to serve in correct folder
Diffstat:
3 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
@@ -18,7 +18,6 @@ jobs:
fail-fast: false
matrix:
version:
- - '1.10'
- '1.11'
- 'nightly'
os:
diff --git a/README.md b/README.md
@@ -2,7 +2,8 @@
[](https://github.com/eloualiche/BazerData.jl/actions/workflows/CI.yml)
[](https://github.com/eloualiche/BazerData.jl/actions/workflows/CI.yml)
-[](https://codecov.io/gh/eloualiche/BazerData.jl)
+[](https://codecov.io/gh/eloualiche/BazerData.jl)
+
`BazerData.jl` is a placeholder package for some functions that I use in julia frequently.
diff --git a/docs/make.jl b/docs/make.jl
@@ -15,11 +15,17 @@ makedocs(
# format = Documenter.HTML(),
format = MarkdownVitepress(
repo = "https://github.com/eloualiche/BazerData.jl",
+ devurl = "dev",
+ devbranch = "build",
+ deploy_url = "eloualiche.github.io/BazerData.jl",
+ description = "BazerData.jl",
),
repo = Remotes.GitHub("eloualiche", "BazerData.jl"),
sitename = "BazerData.jl",
modules = [BazerData],
authors = "Erik Loualiche",
+ version = "0.7.1",
+ # version = "dev",
pages=[
"Home" => "index.md",
"Manual" => [
@@ -43,6 +49,7 @@ deploydocs(;
devbranch = "main",
branch = "gh-pages",
push_preview = true,
+ # versions = ["dev"] # This specifies which versions to deploy
)