File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,14 @@ jobs:
29
29
with :
30
30
version : ' 1.10'
31
31
- uses : julia-actions/cache@v1
32
- - name : Install dependencies
33
- run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
34
- - name : Build and deploy
32
+ - name : Install Dependencies
33
+ run : |
34
+ julia --project=./docs -e '
35
+ using Pkg
36
+ Pkg.develop(PackageSpec(path=pwd()))
37
+ Pkg.instantiate()'
38
+ - name : Build and Deploy
39
+ run : julia -t 2 --project=./docs ./docs/make.jl
35
40
env :
36
41
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
37
42
DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
38
- run : julia -t 2 --project=docs/ docs/make.jl
You can’t perform that action at this time.
0 commit comments