diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index bca04e3..c03c349 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -23,7 +23,7 @@ jobs: version: '1.10' - uses: julia-actions/cache@v1 - name: Install dependencies - run: julia -e 'using Pkg; Pkg.add(url="https://gitlab.com/alblaz/BoreholeResponseFunctions.git"); Pkg.add(url="https://github.com/marcbasquensmunoz/FiniteLineSource"); Pkg.add(path=pwd()); Pkg.build("BoreholeNetworksSimulator"); Pkg.add("Documenter"); Pkg.add("Literate"); Pkg.instantiate()' + run: julia -e 'using Pkg; Pkg.develop(url="https://gitlab.com/alblaz/BoreholeResponseFunctions.git"); Pkg.develop(url="https://github.com/marcbasquensmunoz/FiniteLineSource"); Pkg.develop(path=pwd()); Pkg.add("Documenter"); Pkg.add("Literate"); Pkg.build("BoreholeNetworksSimulator"); Pkg.instantiate()' - name: Build and deploy env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/docs/make.jl b/docs/make.jl index 8716edf..9d044ca 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -15,6 +15,6 @@ dir = @__DIR__ #Literate.markdown("$dir/src/nonhistory.jl", "$dir/src") makedocs( pages = pages, - sitename = "BoreholeNetworksSimulator.jl", - repo = Remotes.GitHub("marcbasquensmunoz", "BoreholeNetworksSimulator.jl") + sitename = "BoreholeNetworksSimulator.jl" + #repo = Remotes.GitHub("marcbasquensmunoz", "BoreholeNetworksSimulator.jl") )