23 lines
502 B
YAML
23 lines
502 B
YAML
name: TeXLive Action
|
|
description: Compile TeX documents into PDF with TeXLive
|
|
branding:
|
|
icon: printer
|
|
color: blue
|
|
inputs:
|
|
files:
|
|
description: TeX files to be compiled.
|
|
required: true
|
|
compiler:
|
|
description: The TeX engine to be used.
|
|
default: latexmk
|
|
options:
|
|
description: Arguments to be passed to the TeX compiler
|
|
default: '-xelatex'
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- ${{ inputs.files }}
|
|
- ${{ inputs.compiler }}
|
|
- ${{ inputs.options }}
|