File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 49
49
continue-on-error : true
50
50
- uses : julia-actions/julia-uploadcoveralls@v0.1
51
51
continue-on-error : true
52
+
53
+ Documentation :
54
+ runs-on : ubuntu-latest
55
+ steps :
56
+ - uses : actions/checkout@v2
57
+ - uses : julia-actions/setup-julia@latest
58
+ with :
59
+ version : nightly
60
+ - name : Cache artifacts
61
+ uses : actions/cache@v2
62
+ env :
63
+ cache-name : cache-artifacts
64
+ with :
65
+ path : ~/.julia/artifacts
66
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/docs/Project.toml') }}
67
+ restore-keys : |
68
+ ${{ runner.os }}-test-${{ env.cache-name }}-
69
+ ${{ runner.os }}-test-
70
+ ${{ runner.os }}-
71
+ - uses : julia-actions/julia-docdeploy@releases/v1
72
+ env :
73
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
You can’t perform that action at this time.
0 commit comments