-
Notifications
You must be signed in to change notification settings - Fork 16
/
action.yml
54 lines (43 loc) · 1.53 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: "Marp CLI Action"
author: "KoharaKazuya"
description: "Run @marp-team/marp-cli to convert markdown files into static HTML / CSS, PDF, PowerPoint document, and image(s)"
inputs:
config-file:
description: >
Marp CLI configuraiton file path.
If not specified, the configuration file in the repository root directory will be automatically detected.
See [Marp CLI document](https://github.com/marp-team/marp-cli/blob/master/README.md#configuration-file).
required: false
generate-html:
description: >
Whether to generate HTML.
required: false
default: "true"
generate-pdf:
description: >
Whether to generate PDF.
required: false
default: "true"
generate-pptx:
description: >
Whether to generate PowerPoint.
required: false
default: "false"
generate-image:
description: >
Format of the title slide image.
Use the input `png` or `jpeg` to generate an image of the title slide. Omit if you don't want to generate.
See [Marp CLI document](https://github.com/marp-team/marp-cli/blob/master/README.md#title-slide---image).
required: false
generate-images:
description: >
Format of the slide deck.
Use the input `png` or `jpeg` to generate images of the slide deck. Omit if you don't want to generate.
See [Marp CLI document](https://github.com/marp-team/marp-cli/blob/master/README.md#multiple-images---images).
required: false
runs:
using: "docker"
image: "Dockerfile"
branding:
color: "blue"
icon: "layers"