20 lines
492 B
YAML
20 lines
492 B
YAML
name: LaTeX compilation
|
|
description: Compile LaTeX documents with preset
|
|
author: Janis Hutz
|
|
inputs:
|
|
args:
|
|
description: Extra arguments to be passed to latexmk
|
|
default: "-latexoption=-file-line-error -latexoption=-interaction=nonstopmode"
|
|
extra_system_packages:
|
|
description: Install extra packages using apk
|
|
default: ""
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- ${{ inputs.args }}
|
|
- ${{ inputs.extra_system_packages }}
|
|
branding:
|
|
icon: book
|
|
color: red
|