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 8a79842 commit 59301edCopy full SHA for 59301ed
.github/workflows/deploy_books.yml
@@ -15,10 +15,16 @@ jobs:
15
16
- name: Install mdBook
17
run: |
18
- chmod +x tools/mdBook
19
- chmod +x tools/mdBook-katex
20
- echo "${GITHUB_WORKSPACE}/tools" >> $GITHUB_PATH
+ chmod +x .github/tools/mdBook
+ chmod +x .github/tools/mdBook-katex
+ echo "${GITHUB_WORKSPACE}/.github/tools" >> $GITHUB_PATH
21
22
+ - name: Verify mdbook version
23
+ run: mdbook --version
24
+
25
+ - name: Verify mdbook-katex version
26
+ run: mdbook-katex --version
27
28
- name: Build the book
29
working-directory: book_template
30
run: mdbook build
0 commit comments