Skip to content

Commit

Permalink
try to open new created file on action
Browse files Browse the repository at this point in the history
  • Loading branch information
UmbrellaLeaf5 committed May 1, 2024
1 parent 2b687e3 commit 7fbfdce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
submodules: 'recursive'

- name: Install Doxygen
run: sudo apt install doxygen && doxygen --version
# source: https://askubuntu.com/questions/1291874/how-to-install-doxygen-on-ubuntu
run: |
chmod +x install_doxygen.sh
./install_doxygen.sh
- name: Install Graphviz
run: sudo apt install graphviz
Expand Down
3 changes: 2 additions & 1 deletion install_doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ mkdir -p ~/Downloads/Install_Files/Doxygen
cd ~/Downloads/Install_Files/Doxygen

# download it
wget https://github.com/doxygen/doxygen/releases/tag/Release_1_9_7/doxygen-1.9.7.linux.bin.tar.gz
wget https://github.com/doxygen/doxygen/releases/tag/Release_1_9_7/doxygen-1.9.7.linux.bin.tar.gz -O doxygen-1.9.7.linux.bin.tar.gz

# extract it
file doxygen-1.9.7.linux.bin.tar.gz
tar -xf doxygen-1.9.7.linux.bin.tar.gz

# cd into the extracted directory
Expand Down

0 comments on commit 7fbfdce

Please sign in to comment.