Skip to content

Commit 1e372bf

Browse files
authored
Update documentation.yml
1 parent d09d6ea commit 1e372bf

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Diff for: .github/workflows/documentation.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,14 @@ jobs:
2929
with:
3030
version: '1.10'
3131
- 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
3540
env:
3641
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
3742
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
38-
run: julia -t 2 --project=docs/ docs/make.jl

0 commit comments

Comments
 (0)