From c34287032e55fef0b893caf14e6b2541367c2338 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Fri, 2 Aug 2024 14:39:18 -0700 Subject: [PATCH] Update make.jl --- docs/make.jl | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 53ae756..3888169 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -3,22 +3,7 @@ if !(dirname(@__DIR__) ∈ Base.LOAD_PATH) insert!(Base.LOAD_PATH, 2, dirname(@__DIR__)) end -using Documenter, Base64 - -# Normalize the documenter key if it's not already base64-encoded -documenter_key = get(ENV, "DOCUMENTER_KEY", "") -try - base64decode(documenter_key) -catch e - if isa(e, ArgumentError) - if !endswith(documenter_key, "\n") - global documenter_key = string(documenter_key, "\n") - end - ENV["DOCUMENTER_KEY"] = base64encode(documenter_key) - else - rethrow(e) - end -end +using Documenter @info("Running any `0_setup.jl` files in the `src/` tree...") # Ensure that we've run any `0_setup.jl` files. @@ -48,7 +33,7 @@ makedocs(; ) deploydocs( - repo = "github.com/JuliaComputing/DAECompiler.jl.git", + repo = "github.com/CedarEDA/DAECompiler.jl.git", branch = "docs", target = "build", )