File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Documenter
2
+ on :
3
+ push :
4
+ branches : [main, master]
5
+ tags : [v*]
6
+ pull_request :
7
+
8
+ jobs :
9
+ Documenter :
10
+ permissions :
11
+ contents : write
12
+ statuses : write
13
+ name : Documentation
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - uses : julia-actions/setup-julia@v2
18
+ with :
19
+ version : ' 1' # replace this with whatever version you need
20
+ show-versioninfo : true # this causes versioninfo to be printed to the action log
21
+ - uses : julia-actions/cache@v2 # cache using https://github.com/julia-actions/cache
22
+ - uses : julia-actions/julia-buildpkg@v1 # if package requires Pkg.build()
23
+ - uses : julia-actions/julia-docdeploy@v1
24
+ env :
25
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
You can’t perform that action at this time.
0 commit comments