Documentation deployment fix (#230)

Similar work done in FEMQuad.jl and FEMBase.jl
This commit is contained in:
Jukka Aho
2019-04-08 21:35:13 +03:00
committed by GitHub
parent 3be87e02bf
commit e462fa2862
4 changed files with 15 additions and 8 deletions
-1
View File
@@ -5,7 +5,6 @@ using Documenter
deploydocs(
repo = "github.com/JuliaFEM/JuliaFEM.jl.git",
julia = "1.0",
target = "build",
deps = nothing,
make = nothing)
+4 -3
View File
@@ -254,8 +254,9 @@ PAGES = [
@info("Pages in documentation", PAGES)
makedocs(modules=[JuliaFEM],
format = Documenter.HTML(),
format = Documenter.HTML(analytics="UA-83590644-1"),
checkdocs = :all,
sitename = "JuliaFEM",
analytics = "UA-83590644-1",
sitename = "JuliaFEM.jl",
pages = PAGES)
include("deploy.jl")