-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
31 lines (30 loc) · 1.03 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
name: 'Compile All LaTeX'
description: 'Searches all tex files and compiles them via Rubber'
branding:
icon: book-open
color: orange
inputs:
command:
description: The command to invoke to compile. Defaults to 'rubber --inplace -d --synctex -s'
required: false
default: rubber --unsafe --inplace -d --synctex -s -W all
verbose:
description: Adds more output
required: false
default: false
success:
description: The name of the environment variable that will hold the list of correctly compiled files. Since GitHub Actions does not support multiline output, this action writes on a variable.
required: false
default: LATEX_SUCCESSES
outputs:
successfully-compiled:
description: "A comma-separated list of all successfully compiled files"
compiled-files:
description: "A comma-separated list of all the produced pdfs"
runs:
using: "docker"
image: docker://danysk/compile-latex-action:1.0.28
args:
- ${{ inputs.command }}
- ${{ inputs.verbose }}
- ${{ inputs.success }}