File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
actions/deploy-to-github-pages Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 81
81
find public/book public/docs -name \*.html -print0 |
82
82
xargs -0r sed -i 's,http://git-scm\.com,https://git-scm.com,g'
83
83
84
+ - uses : actions/setup-node@v5
85
+ - name : pre-render the Graphviz diagrams
86
+ shell : bash
87
+ run : |
88
+ npm install node-html-parser &&
89
+ node ./script/graphviz-ssr.js
90
+
84
91
- name : run Pagefind ${{ env.PAGEFIND_VERSION }} to build the search index
85
92
shell : bash
86
93
run : npx -y pagefind@${{ env.PAGEFIND_VERSION }} --site public --write-playground
Original file line number Diff line number Diff line change 32
32
exit 1
33
33
fi
34
34
35
+ - uses : actions/setup-node@v5
36
+ - name : pre-render the Graphviz diagrams
37
+ run : |
38
+ npm install node-html-parser &&
39
+ node ./script/graphviz-ssr.js
40
+
35
41
- name : run Pagefind ${{ env.PAGEFIND_VERSION }} to build the search index
36
42
run : npx -y pagefind@${{ env.PAGEFIND_VERSION }} --site public --write-playground
37
43
You can’t perform that action at this time.
0 commit comments