We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f7dcb commit 5fec972Copy full SHA for 5fec972
.github/workflows/deploy-docs.yml
@@ -49,16 +49,16 @@ jobs:
49
50
- name: Install Conan
51
run: |
52
- pip install "conan<2"
53
- mkdir -p ~/.conan2/profiles
54
- cp .github/workflows/conan/profiles/gcc11 ~/.conan2/profiles/default
+ pip install "conan<2" breathe sphinx
+ mkdir -p ~/.conan/profiles
+ cp .github/workflows/conan/profiles/gcc11 ~/.conan/profiles/gcc11
55
56
- name: Build documentation
57
58
mkdir -p build
59
cd build
60
- cmake -DCMAKE_BUILD_TYPE=Release -DH5CPP_LOCAL_MODULES=ON ..
61
- make html
+ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DH5CPP_LOCAL_MODULES=ON -DH5CPP_CONAN_PROFILE=gcc11 ..
+ cmake --build build --target html
62
63
- name: Clone existing GitHub Pages content
64
0 commit comments