Change: GMP doc: correct nvt and nvt_id in GET_NOTES #426
This file contains 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: 'Build Documentation' | |
on: | |
push: | |
branches: [ main, stable, oldstable ] | |
jobs: | |
generate-doc-and-upload-coverage: | |
name: Build XML documentation and upload coverage | |
runs-on: ubuntu-latest | |
container: greenbone/doxygen | |
steps: | |
- name: Run the c lang coverage action | |
uses: greenbone/actions/doc-coverage-clang@v3 | |
build-gmp-doc: | |
name: Build GMP documentation | |
runs-on: ubuntu-latest | |
container: ${{ vars.IMAGE_REGISTRY }}/greenbone/gvmd-build:stable | |
steps: | |
- name: Check out gvmd | |
uses: actions/checkout@v4 | |
- name: Generate GMP documentation (HTML) | |
run: | | |
mkdir build | |
cd build | |
cmake -DSKIP_SRC=1 .. | |
make doc-gmp | |
- name: Upload GMP documentation artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gmp.html | |
path: build/doc/gmp.html | |
retention-days: 14 |