Skip to content

Commit 12cf5de

Browse files
Zen0x7TheLartians
andauthored
Fix GitHub pages (#191)
* Fix GitHub pages As `peaceiris/actions-gh-pages` README describes, the `permissions / contents / write` definition is required. In other hand, without that, the step will fail. Also a jump to the version 4 is recommended. Basically because i did a test and previous version, as-is doesn't work. * Space for testing * switch to ubunto for documentation workflow * build test without publish * try again * add tag restriction and pages back --------- Co-authored-by: Lars Melchior <[email protected]> Co-authored-by: Lars Melchior <[email protected]>
1 parent 5115efe commit 12cf5de

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/documentation.yaml

+13-5
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ on:
88
env:
99
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
1010

11+
permissions:
12+
contents: write
13+
14+
1115
jobs:
1216
build:
1317
name: Build and publish documentation
14-
runs-on: macos-latest
18+
runs-on: ubuntu-latest
1519
steps:
1620
- uses: actions/checkout@v3
1721

@@ -20,18 +24,22 @@ jobs:
2024
path: "**/cpm_modules"
2125
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
2226

23-
- name: Install dependencies
27+
- name: Install python dependencies
2428
run: |
25-
brew install doxygen
26-
pip3 install jinja2 Pygments
29+
pip3 install jinja2==3.1.6 Pygments==2.19.1
2730
31+
- name: Install Doxygen
32+
uses: ssciwr/doxygen-install@v1
33+
with:
34+
version: "1.13.2"
35+
2836
- name: Build
2937
run: |
3038
cmake -Sdocumentation -Bbuild
3139
cmake --build build --target GenerateDocs
3240
3341
- name: Publish
34-
uses: peaceiris/actions-gh-pages@v3
42+
uses: peaceiris/actions-gh-pages@v4
3543
with:
3644
github_token: ${{ secrets.GITHUB_TOKEN }}
3745
publish_dir: ./build/doxygen/html

0 commit comments

Comments
 (0)