Skip to content

Commit

Permalink
Use newer Doxygen and other action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Rouslan committed Nov 5, 2024
1 parent fca7b26 commit 7befab8
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,29 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
cache: 'pip'
cache-dependency-path: '${{ github.workspace }}/doc/requirements.txt'
- run: python -m pip install --upgrade pip
- name: Install Python Dependencies
run: python -m pip install -r ${{ github.workspace }}/doc/requirements.txt
- name: Install Doxygen
uses: awalsh128/cache-apt-pkgs-action@latest
uses: ssciwr/doxygen-install@v1
with:
packages: doxygen
version: 1.0
version: "1.10.0"
- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -S ${{ github.workspace }}
- name: Build Documentation
run: cmake --build ${{ github.workspace }}/build --target documentation
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v5
- name: Upload Artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ${{ github.workspace }}/build/doc/root
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit 7befab8

Please sign in to comment.