Skip to content

feat: client_async example (#430) #1

feat: client_async example (#430)

feat: client_async example (#430) #1

Workflow file for this run

name: Doc
on:
push:
branches: [master]
pull_request:
release:
types: [published]
workflow_dispatch:
jobs:
doc:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: aminya/setup-cpp@v1
with:
doxygen: true
graphviz: true
- name: Build documentation
run: |
mkdir build
cd build
cmake -DUAPP_BUILD_DOCUMENTATION=ON ..
cmake --build . --target open62541pp_doc
- name: Deploy
if: (github.event_name == 'release' || github.event_name == 'workflow_dispatch')
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/doc_html
- uses: actions/upload-artifact@v4
with:
name: doc-html
path: build/doc_html/
compression-level: 1