We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc84728 commit 6ac6a79Copy full SHA for 6ac6a79
.github/workflows/documentation.yml
@@ -0,0 +1,27 @@
1
+name: Documentation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ tags: '*'
8
+ pull_request:
9
10
+jobs:
11
+ build:
12
+ permissions:
13
+ contents: write
14
+ statuses: write
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: julia-actions/setup-julia@v1
19
+ with:
20
+ version: '1.10'
21
+ - name: Install dependencies
22
+ run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
23
+ - name: Build and deploy
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
26
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
27
+ run: julia --project=docs/ docs/make.jl
0 commit comments