We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65eaabf commit cdb8aadCopy full SHA for cdb8aad
1 file changed
.github/workflows/Documenter.yml
@@ -9,20 +9,21 @@ on:
9
tags: '*'
10
jobs:
11
docs:
12
+ name: Documentation
13
permissions:
14
contents: write
15
statuses: write
- name: Documentation
16
runs-on: ubuntu-latest
17
steps:
18
- uses: actions/checkout@v6
19
- uses: julia-actions/setup-julia@v2
20
with:
21
version: '1'
22
- name: Install dependencies
23
- run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
+ shell: julia --color=yes --project=docs {0}
24
+ run: 'using Pkg; Pkg.instantiate()'
25
- name: Build and deploy
26
+ run: julia --color=yes --project=docs docs/make.jl
27
env:
28
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
- run: julia --project=docs/ docs/make.jl
0 commit comments