We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f901091 + 71d3b4e commit 09dca35Copy full SHA for 09dca35
.github/workflows/publish.yaml
@@ -20,7 +20,14 @@ jobs:
20
run: sudo python3 -m pip install gitpython pandocfilters
21
22
- name: Install mermaid diagram filter
23
- run: sudo npm install --global mermaid-filter
+ run: |
24
+ git clone https://github.com/raghur/mermaid-filter/
25
+ cd mermaid-filter
26
+ sed -i '1s/{/{ "overrides": { "puppeteer": "^21" },/' package.json
27
+ sed -i '1s/^\/\/ //' index.js
28
+ npm install --loglevel verbose
29
+ sudo npm link --loglevel verbose
30
+ cd ..
31
32
- name: Build documentation
33
run: cd doc/doxygen-root && make && touch html/.nojekyll
0 commit comments