Skip to content

Commit efdfd4b

Browse files
Update static.yml
1 parent c96cebe commit efdfd4b

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/static.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Generate and Deploy Doxygen Docs
33
on:
44
push:
55
branches:
6-
- main # or your default branch
6+
- main
77

88
permissions:
9-
contents: write # needed for gh-pages deployment
9+
contents: write
1010

1111
jobs:
1212
docs:
@@ -16,8 +16,10 @@ jobs:
1616
- name: Checkout repo
1717
uses: actions/checkout@v3
1818

19-
- name: Install Doxygen
20-
run: sudo apt-get update && sudo apt-get install -y doxygen graphviz
19+
- name: Install Doxygen and Graphviz (non-interactive)
20+
run: |
21+
sudo DEBIAN_FRONTEND=noninteractive apt-get update
22+
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y doxygen graphviz
2123
2224
- name: Generate docs
2325
run: doxygen Doxyfile

0 commit comments

Comments
 (0)