feat: add basic Desireset wrapper (#29) #47
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
name: Build Doxygen | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-doxygen: | |
name: Build Doxygen | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Doxygen | |
run: | | |
sudo apt-get install -y graphviz | |
mkdir doxygen-install | |
cd doxygen-install | |
wget https://www.doxygen.nl/files/doxygen-1.10.0.linux.bin.tar.gz | |
tar -xvf doxygen-1.10.0.linux.bin.tar.gz | |
sudo mv doxygen-1.10.0/bin/doxygen /usr/bin/doxygen | |
cd .. | |
sudo rm -rf doxygen-install | |
shell: bash | |
- name: Generate Doxygen Documentation | |
run: /usr/bin/doxygen Doxygen/Doxyfile | |
shell: bash | |
- name: Create .nojekyll (ensures pages with underscores work on gh pages) | |
run: touch Doxygen/.nojekyll | |
shell: bash | |
- name: Upload Doxygen Documentation to Github Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: Doxygen/Generated/html |