39 lines
949 B
YAML
Raw Normal View History

2023-10-30 01:12:29 +08:00
name: doc_doxygen
on:
2024-12-09 12:18:31 +00:00
pull_request:
branches:
- master
paths:
- 'documentation/doxygen/**'
- 'src/**'
- 'include/**'
- 'components/drivers/include/drivers/**'
- 'components/dfs/dfs_v2/include/**'
- 'components/dfs/dfs_v2/src/**'
- 'components/finsh/**'
2023-10-30 01:12:29 +08:00
# Runs at 16:00 UTC (BeiJing 00:00) on the 30st of every month
schedule:
- cron: '0 16 30 * *'
workflow_dispatch:
2023-10-30 01:12:29 +08:00
jobs:
build:
2024-12-09 12:18:31 +00:00
runs-on: ubuntu-22.04
name: doxygen_doc generate
if: github.repository_owner == 'RT-Thread'
2023-10-30 01:12:29 +08:00
steps:
2023-12-26 23:42:58 +08:00
- uses: actions/checkout@v4
2023-10-30 01:12:29 +08:00
with:
submodules: 'recursive'
- name: Install Tools
shell: bash
run: |
sudo apt-get update
sudo apt-get -qq install doxygen graphviz
- name: generat doxygen html
shell: bash
run: |
cd documentation/doxygen
doxygen Doxyfile
cat Doxyfile