File tree 2 files changed +7
-17
lines changed
2 files changed +7
-17
lines changed Original file line number Diff line number Diff line change 12
12
- uses : JuliaRegistries/TagBot@v1
13
13
with :
14
14
token : ${{ secrets.GITHUB_TOKEN }}
15
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 26
26
- x64
27
27
steps :
28
28
- uses : actions/checkout@v2
29
- - uses : julia-actions/setup-julia@v1
29
+ - uses : julia-actions/setup-julia@latest
30
30
with :
31
31
version : ${{ matrix.version }}
32
32
arch : ${{ matrix.arch }}
@@ -55,24 +55,13 @@ jobs:
55
55
runs-on : ubuntu-latest
56
56
steps :
57
57
- uses : actions/checkout@v2
58
- - uses : julia-actions/setup-julia@v1
58
+ - uses : julia-actions/setup-julia@latest
59
59
with :
60
60
version : ' 1.6'
61
- - run : |
62
- git config --global user.name name
63
- git config --global user.email email
64
- git config --global github.user username
65
- - run : |
66
- julia --project=docs -e '
67
- using Pkg
68
- Pkg.develop(PackageSpec(path=pwd()))
69
- Pkg.instantiate()'
70
- - run : |
71
- julia --project=docs -e '
72
- using Documenter: doctest
73
- using GPUArrays
74
- doctest(GPUArrays)'
75
- - run : julia --project=docs docs/make.jl
61
+ - name : Install dependencies
62
+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
63
+ - name : Build and deploy
76
64
env :
77
65
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
78
66
DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
67
+ run : julia --project=docs/ docs/make.jl
You can’t perform that action at this time.
0 commit comments