forked from ammaraskar/sphinx-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (26 loc) · 660 Bytes
/
Copy pathaction.yml
File metadata and controls
26 lines (26 loc) · 660 Bytes
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
name: 'Sphinx Build'
description: 'Builds documentation using Sphinx'
author: 'Ammar Askar'
branding:
icon: 'book'
color: 'yellow'
inputs:
docs-folder:
description:
The folder containing your sphinx docs.
required: true
default: "docs/"
build-command:
description:
The command used to build your documentation.
required: false
default: make html
pre-build-command:
description:
Run before the build command, you can use this to install system level
dependencies, for example with
"apt-get update -y && apt-get install -y perl"
required: false
runs:
using: 'docker'
image: 'Dockerfile'