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
Original file line number Diff line number Diff line change 39
39
exit 1
40
40
fi
41
41
42
+ - uses : actions/setup-node@v5
43
+ - name : pre-render the Graphviz diagrams
44
+ run : |
45
+ npm install node-html-parser &&
46
+ node ./script/graphviz-ssr.js
47
+
42
48
- name : run Pagefind ${{ env.PAGEFIND_VERSION }} to build the search index
43
49
run : npx -y pagefind@${{ env.PAGEFIND_VERSION }} --site public
44
50
You can’t perform that action at this time.
0 commit comments