File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change
1
+ # see https://juliadocs.github.io/Documenter.jl/dev/man/hosting/#GitHub-Actions
2
+ # add this file to the repository once you set up authentication as described in the Documenter manual
3
+
4
+ name : Documentation
5
+
6
+ on :
7
+ push :
8
+ branches :
9
+ - master
10
+ tags : ' *'
11
+ pull_request :
12
+
13
+ jobs :
14
+ build :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+ - uses : julia-actions/setup-julia@latest
19
+ with :
20
+ version : ' 1.10'
21
+ - name : Install dependencies
22
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
23
+ - name : Build and deploy
24
+ env :
25
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
26
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
27
+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3
3
NLopt = " 76087f3c-5699-56af-9a33-bf431cd00edd"
4
4
5
5
[compat ]
6
- Documenter = " ~0.26 "
6
+ Documenter = " 1 "
You can’t perform that action at this time.
0 commit comments