From 3e76fb313e3afc09bd613ecc5606216a42daf94e Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Thu, 7 Sep 2023 08:37:25 +1200 Subject: [PATCH] add some debug output to docs/make.jl --- docs/make.jl | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 938520c0d..c6413884b 100755 --- a/docs/make.jl +++ b/docs/make.jl @@ -117,14 +117,12 @@ makedocs( strict = Documenter.except(:cross_references, :missing_docs), ) -# By default Documenter does not deploy docs just for PR -# this causes issues with how we're doing things and ends -# up choking the deployment of the docs, so here we -# force the environment to ignore this so that Documenter -# does indeed deploy the docs -ENV["TRAVIS_PULL_REQUEST"] = "false" +@info "`makedocs` has finished running. " deploydocs( - repo = "github.com/alan-turing-institute/MLJ.jl.git", - push_preview=false + repo = "github.com/alan-turing-institute/MLJ.jl", + devbranch="dev", + push_preview=false, ) + +@info "`deploydocs` has finished running. "