We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e3af8 commit 76fba98Copy full SHA for 76fba98
.github/workflows/documentation.yml
@@ -0,0 +1,31 @@
1
+name: Documentation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ tags: '*'
8
+ pull_request:
9
10
+jobs:
11
+ build:
12
+ permissions:
13
+ actions: write
14
+ contents: write
15
+ pull-requests: read
16
+ statuses: write
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: julia-actions/setup-julia@v1
21
+ with:
22
+ version: '1.11'
23
+ include-all-prereleases: true
24
+ - uses: julia-actions/cache@v1
25
+ - name: Install dependencies
26
+ run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
27
+ - name: Build and deploy
28
+ env:
29
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
31
+ run: julia --project=docs/ docs/make.jl
0 commit comments