Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:

- name: Install Doxygen static libclang deps
run: sudo apt-get install libclang1-12 libclang-cpp12
run: sudo apt-get install libclang1-18 libclang-cpp18

- name: Install Doxygen from SF binary archives
env:
Expand All @@ -25,7 +25,7 @@ jobs:
cd doxygen-$DOXYGEN_VERSION
sudo make install

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: doxygen
working-directory: doxygen
Expand All @@ -37,7 +37,7 @@ jobs:
path: ${{ github.workspace }}/doxygen/html

deploy-docs:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build]
if: github.ref_type == 'branch' && github.ref_name == 'master'
concurrency:
Expand All @@ -51,7 +51,7 @@ jobs:
path: docs

- name: upload to github pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
Expand Down
Loading