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 bcbda7e commit 15d6945Copy full SHA for 15d6945
.github/workflows/Documenter.yml
@@ -0,0 +1,18 @@
1
+name: Documenter
2
+on:
3
+ push:
4
+ branches: [master]
5
+ tags: [v*]
6
+ pull_request:
7
+
8
+jobs:
9
+ Documenter:
10
+ name: Documentation
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: julia-actions/julia-buildpkg@latest
15
+ - uses: julia-actions/julia-docdeploy@latest
16
+ env:
17
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
docs/make.jl
@@ -25,4 +25,5 @@ makedocs(
25
26
deploydocs(
27
repo = "github.com/JuliaDebug/JuliaInterpreter.jl.git",
28
+ push_preview = true
29
)
0 commit comments