Skip to content

Commit

Permalink
Update docs.yaml
Browse files Browse the repository at this point in the history
Fix build with latest GithubActions.
  • Loading branch information
Youw committed Mar 2, 2025
1 parent c5ee4d3 commit 9216ee7
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 9216ee7

Please sign in to comment.