mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
29 lines
550 B
YAML
29 lines
550 B
YAML
name: build_docs
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build_docs:
|
|
name: Build documentation
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Build doxygen
|
|
uses: mattnotmitt/doxygen-action@v1
|
|
with:
|
|
working-directory: './'
|
|
doxyfile-path: 'docu/doxygen.ini'
|
|
|
|
- name: Build mkdocs
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install mkdocs
|
|
mkdocs build -f docu/mkdocs.yml
|
|
|
|
- name: Upload to docs-server
|
|
run: echo 'test'
|