File tree Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Expand file tree Collapse file tree 3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Documentation
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ tags : ' *'
8
+ pull_request :
9
+
10
+ jobs :
11
+ build :
12
+ permissions :
13
+ contents : write
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v2
17
+ - uses : julia-actions/setup-julia@v1
18
+ with :
19
+ version : ' 1.6'
20
+ - name : Install dependencies
21
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
22
+ - name : Build and deploy
23
+ env :
24
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
25
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
26
+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change
1
+ docs /build /
Original file line number Diff line number Diff line change @@ -35,3 +35,5 @@ makedocs(
35
35
],
36
36
],
37
37
)
38
+
39
+ deploydocs (repo = " github.com/lanl-ansi/JuMPIn.jl.git" )
You can’t perform that action at this time.
0 commit comments