We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c96cebe commit efdfd4bCopy full SHA for efdfd4b
1 file changed
.github/workflows/static.yml
@@ -3,10 +3,10 @@ name: Generate and Deploy Doxygen Docs
3
on:
4
push:
5
branches:
6
- - main # or your default branch
+ - main
7
8
permissions:
9
- contents: write # needed for gh-pages deployment
+ contents: write
10
11
jobs:
12
docs:
@@ -16,8 +16,10 @@ jobs:
16
- name: Checkout repo
17
uses: actions/checkout@v3
18
19
- - name: Install Doxygen
20
- run: sudo apt-get update && sudo apt-get install -y doxygen graphviz
+ - name: Install Doxygen and Graphviz (non-interactive)
+ run: |
21
+ sudo DEBIAN_FRONTEND=noninteractive apt-get update
22
+ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y doxygen graphviz
23
24
- name: Generate docs
25
run: doxygen Doxyfile
0 commit comments