209 add basic support for saverestore operations in materialdatamanager #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Doxygen | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| env: | |
| # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
| BUILD_TYPE: Release | |
| jobs: | |
| doc-html: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install Doxygen | |
| run: sudo apt-get install doxygen graphviz -y | |
| shell: bash | |
| - name: Configure CMake | |
| run: | | |
| cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \ | |
| -Denable-doxygen-doc=ON \ | |
| -Denable-parallel-stl-algorithms=OFF | |
| - name: Generate doxygen | |
| run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target doc-html | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| personal_token: ${{ secrets.DEPLOY_TO_THELFER_GITHUB_IO }} | |
| publish_branch: master | |
| publish_dir: ${{github.workspace}}/build/docs/doxygen/html/ | |
| external_repository: thelfer/thelfer.github.io | |
| destination_dir: mgis/doxygen/ |