Skip to content

Commit

Permalink
docs 1.0 upgrade (#192)
Browse files Browse the repository at this point in the history
* fix docs

* allow tagbot to build docs
  • Loading branch information
nhz2 authored Sep 24, 2023
1 parent d692a43 commit dcf65e6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
run: |
julia -e '
using CompatHelper
CompatHelper.main(;
subdirs=[
"",
"docs",
],
)'
1 change: 1 addition & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ jobs:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
4 changes: 4 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"

[compat]
Documenter = "1"
Literate = "2"
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ makedocs(;
"Methods" => "methods.md",
# "Examples" => pages("examples")
],
warnonly = [:missing_docs,],
)

if isci
Expand Down

0 comments on commit dcf65e6

Please sign in to comment.