Skip to content

Commit 32ab2a5

Browse files
authored
Update doxygen_gh_pages.yaml
Use Doxygen 1.9.4
1 parent 2319f34 commit 32ab2a5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/doxygen_gh_pages.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ jobs:
1212
with:
1313
fetch-depth: 1
1414
- name: Install doxygen
15+
# run: sudo apt-get install -y doxygen
1516
run: |
16-
sudo apt-get install -y doxygen
17+
wget https://www.doxygen.nl/files/doxygen-1.9.4.linux.bin.tar.gz
18+
tar -xvzf doxygen-1.9.4.linux.bin.tar.gz
19+
ln -s doxygen-1.9.4/bin/doxygen doxygen
1720
- name: Generate doxygen html
1821
run: |
1922
mkdir build
2023
cd build
2124
wget https://raw.githubusercontent.com/jothepro/doxygen-awesome-css/main/doxygen-awesome.css
22-
ENV_GIT_HEAD=`git log -1 --format="%h (%cd)" | tr -d "\n"` doxygen ../doc/Doxyfile
25+
ENV_GIT_HEAD=`git log -1 --format="%h (%cd)" | tr -d "\n"` ../doxygen ../doc/Doxyfile
2326
mkdir -p html/doc
2427
cp -r ../doc/manual html/doc/
2528
- name: Deploy

0 commit comments

Comments
 (0)