File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Documenter
2+
3+ on :
4+ push :
5+ branches :
6+ - doc_test
7+ tags : ' *'
8+ pull_request :
9+
10+ jobs :
11+ Documenter :
12+ # These permissions are needed to:
13+ # - Deploy the documentation: https://documenter.juliadocs.org/stable/man/hosting/#Permissions
14+ # - Delete old caches: https://github.com/julia-actions/cache#usage
15+ permissions :
16+ actions : write
17+ contents : write
18+ pull-requests : read
19+ statuses : write
20+ runs-on : ubuntu-latest
21+ steps :
22+ - uses : actions/checkout@v4
23+ - uses : julia-actions/setup-julia@v2
24+ with :
25+ version : ' 1.11' # replace this with whatever version you need
26+ show-versioninfo : true # this causes versioninfo to be printed to the action log
27+ - uses : julia-actions/cache@v2 # cache using https://github.com/julia-actions/cache
28+ - uses : julia-actions/julia-buildpkg@v1 # if package requires Pkg.build()
29+ - uses : julia-actions/julia-docdeploy@v1
30+ with :
31+ prefix : xvfb-run
32+ env :
33+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments