Skip to content

Commit

Permalink
update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
nohzafk committed Nov 27, 2023
1 parent 15f8705 commit 4738c52
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions .github/workflows/mdbook.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
- name: mdBook Action with plugins
uses: jontze/[email protected]

name: Setup mdBook with plugins (latest)
on:
push:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jontze/action-mdbook@v3
with:
token: ${{secrets.GITHUB_TOKEN}}
# Optional Plugins have to be enabled
use-linkcheck: true
use-mermaid: false
use-toc: true
use-opengh: true
use-admonish: false
use-katex: false
- name: Show mdbook version
run: mdbook --version
- name: Show linkchecker version
run: mdbook-linkcheck --version
- name: Show toc version
run: mdbook-toc --version
- name: Show open-on-gh version
run: mdbook-open-on-gh --version

0 comments on commit 4738c52

Please sign in to comment.