mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-01-16 04:09:58 +01:00
23 lines
494 B
YAML
23 lines
494 B
YAML
name: Auto-build doxygen docs
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
#! only for test, remove before MR !
|
|
- doxygen
|
|
|
|
jobs:
|
|
doxygen:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'recurive'
|
|
- name: Setup and run doxygen
|
|
run: |
|
|
sudo apt install doxygen -y
|
|
doxygen Doxyfile
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: HTML_doxygen
|
|
path: qelectrotech-source-mirror/doc/ |