GitHub Action to build the API docs from master branch (#704)

Uploads the complete HTML API docs as an artifact called api_docs.zip
This commit is contained in:
Marcus Weseloh 2020-11-16 15:27:56 +01:00 committed by GitHub
parent 780eebcb2c
commit c7f9d05190
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

38
.github/workflows/api_doc_build.yml vendored Normal file
View file

@ -0,0 +1,38 @@
name: API Doc Build
on:
push:
branches:
- master
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: sudo apt-get install doxygen xsltproc
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- name: Build
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config $BUILD_TYPE --target doxygen
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: api_docs
path: ${{runner.workspace}}/build/doc/api/html