We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d09d6ea commit 1e372bfCopy full SHA for 1e372bf
.github/workflows/documentation.yml
@@ -29,10 +29,14 @@ jobs:
29
with:
30
version: '1.10'
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
+ - name: Install Dependencies
+ run: |
+ 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
40
env:
41
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
42
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
- run: julia -t 2 --project=docs/ docs/make.jl
0 commit comments