forked from OneLoneCoder/olcPixelGameEngine
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Manually install Doxygen from GH Releases
- Loading branch information
1 parent
85bfd82
commit e3abdea
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,13 +31,12 @@ jobs: | |
uses: actions/checkout@v4 | ||
- name: Setup Pages | ||
uses: actions/configure-pages@v5 | ||
- name: Install Doxygen from GitHub releases | ||
uses: jaxxstorm/[email protected] | ||
with: | ||
repo: doxygen/doxygen | ||
tag: Release_1_11_0 | ||
platform: linux | ||
arch: "" # Do not look for an arch | ||
- name: Install Doxygen from GitHub releases manually | ||
run: | | ||
wget https://github.com/doxygen/doxygen/releases/download/Release_1_11_0/doxygen-1.11.0.linux.bin.tar.gz -O doxygen.tar.gz | ||
tar -xvzf doxygen.tar.gz | ||
cd doxygen-* | ||
make install | ||
- name: Run Doxygen | ||
run: doxygen docs/Doxyfile | ||
- name: Upload artifact | ||
|