Skip to content

Commit 31f6efc

Browse files
authored
MassInstallAction: Install the Documenter workflow on this repository (#50)
1 parent d35236c commit 31f6efc

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
version:
1616
- '1.0'
17-
- '1.1'
17+
- '1'
1818
# - 'nightly'
1919
os:
2020
- ubuntu-latest

.github/workflows/Documenter.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33

44
[compat]
5-
Documenter = "~0.22"
5+
Documenter = "~0.25"

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ makedocs(
1313
deploydocs(
1414
repo = "github.com/JuliaMath/AbstractFFTs.jl.git",
1515
target = "build",
16+
push_preview = true
1617
)

0 commit comments

Comments
 (0)