We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e736ca4 commit 86c3fccCopy full SHA for 86c3fcc
.github/workflows/build-and-deploy-documentation.yaml
@@ -15,6 +15,15 @@ jobs:
15
run: |
16
sudo apt install bison flex # Needed by Doxygen
17
pip3 install jinja2 # Needed by M.css
18
+ - name: Cache Doxygen and M.CSS externals
19
+ uses: actions/cache@v4
20
+ with:
21
+ path: |
22
+ ${{ github.workspace }}/build/external/doxygen/
23
+ ${{ github.workspace }}/build/external/mcss/
24
+ key: |
25
+ ${{ hashFiles('${{ github.workspace }}/cmake/ExternalDoxygen.cmake') }}
26
+ ${{ hashFiles('${{ github.workspace }}/cmake/ExternalMCSS.cmake') }}
27
- name: Build docs
28
29
mkdir build
0 commit comments