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 b5844bc commit bc1d9e9Copy full SHA for bc1d9e9
1 file changed
.github/workflows/Documentation.yml
@@ -0,0 +1,26 @@
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
+ contents: write
14
+ statuses: write
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v6
18
+ - uses: julia-actions/setup-julia@v2
19
+ with:
20
+ version: '1'
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 }}
26
+ run: julia --project=docs/ docs/make.jl
0 commit comments