Skip to content

Commit

Permalink
Update CI/make script
Browse files Browse the repository at this point in the history
  • Loading branch information
tecosaur committed Oct 22, 2024
1 parent fe5a02d commit 92c0ca4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Build site
permissions:
contents: write
on:
Expand All @@ -9,11 +9,11 @@ on:
pull_request:
jobs:
docs:
name: Documentation
name: Documenter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- run: julia --project=. -e 'using Pkg; Pkg.instantiate();'
Expand Down
7 changes: 4 additions & 3 deletions make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

using Documenter

makedocs(;
makedocs(
modules = Module[],
format = Documenter.HTML(),
clean = true,
Expand All @@ -19,8 +19,9 @@ makedocs(;
authors = "The Julia Project",
)

deploydocs(;
repo="github.com/tecosaur/julia-dev-guide.jl",
deploydocs(
repo = "JuliaLang/devguide.julialang.org",
cname = "devguide.julialang.org",
devbranch = "main",
versions = nothing
)

0 comments on commit 92c0ca4

Please sign in to comment.