forked from dante-ev/latex-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
29 lines (29 loc) · 908 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
name: LaTeX compilation
description: Compiles latex documents using pdflatex, lualatex, xelatex. Full TeXLive distribution.
author: Cheng XU, Oliver Kopp
inputs:
root_file:
description: The root LaTeX file to be compiled
required: true
working_directory:
description: The working directory for the latex compiler to be invoked
compiler:
description: LaTeX engine to be used
default: latexmk
args:
description: Extra arguments to be passed to the latex compiler
default: "-pdf -latexoption=-file-line-error -latexoption=-interaction=nonstopmode"
extra_system_packages:
description: Install extra packages by apt-get
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.root_file }}
- ${{ inputs.working_directory }}
- ${{ inputs.compiler }}
- ${{ inputs.args }}
- ${{ inputs.extra_system_packages }}
branding:
icon: book
color: blue