-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
40 lines (40 loc) · 1014 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: 'Doxygenize'
description: 'Generate Doxygen code documentation and publish it to GitHub Pages'
branding:
icon: 'book'
color: 'orange'
inputs:
doxygenconf:
description: 'Doxygen configuration file path'
required: true
default: './Doxyfile'
htmloutput:
description: 'Generated HTML documents output folder'
required: true
default: './docs/'
ghpagesbranch:
description: 'GitHub Pages branch name'
required: true
default: 'gh-pages'
ghpagesdir:
description: 'GitHub Pages directory path'
required: true
default: './'
darkmode:
description: 'Toggle dark mode CSS'
required: false
default: false
customheader:
description: 'Custom Doxygen pages header HTML file URL'
required: false
default: ''
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.doxygenconf }}
- ${{ inputs.htmloutput }}
- ${{ inputs.ghpagesbranch }}
- ${{ inputs.ghpagesdir }}
- ${{ inputs.darkmode }}
- ${{ inputs.customheader }}