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 765bd6a commit e519c2fCopy full SHA for e519c2f
.github/workflows/CompatHelper.toml renamed to .github/workflows/CompatHelper.yml
.github/workflows/Documentation.yml
@@ -0,0 +1,23 @@
1
+name: Documentation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ tags: '*'
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: julia-actions/setup-julia@latest
15
+ with:
16
+ version: 1
17
+ - name: Install dependencies
18
+ run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
19
+ - name: Build and deploy
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
22
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
23
+ run: julia --project=docs/ docs/make.jl
0 commit comments