We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b3f0f1 commit 916f974Copy full SHA for 916f974
1 file changed
.github/workflows/build_docs.yaml
@@ -7,6 +7,10 @@ on:
7
required: false
8
type: string
9
default: '1.9.6'
10
+ install-graphviz:
11
+ required: false
12
+ type: boolean
13
+ default: false
14
15
permissions: {}
16
@@ -55,6 +59,10 @@ jobs:
55
59
cd "doxygen-${DOXYGEN_VERSION}"
56
60
sudo make install
57
61
62
+ - name: Install Graphviz
63
+ if: inputs.install-graphviz == true
64
+ run: sudo apt-get install -y graphviz
65
+
58
66
- uses: actions/checkout@v6
67
with:
68
persist-credentials: false
0 commit comments