Skip to content

Use error_code instead of exception and don't display error message o… #9

Use error_code instead of exception and don't display error message o…

Use error_code instead of exception and don't display error message o… #9

Workflow file for this run

on:
workflow_dispatch:
push:
branches:
- asio
paths:
- '**.h'
- '**.md'
name: Build doxygen documentation
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Doxygen and Dot
run: sudo apt install doxygen graphviz
- name: Run doxygen
run: doxygen doxyfile
deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to Github Pages
id: deployment
uses: actions/deploy-pages@v2