27 lines
671 B
YAML
27 lines
671 B
YAML
name: LaTeX compilation
|
|
description: Compile LaTeX documents with preset
|
|
author: Janis Hutz
|
|
inputs:
|
|
workdir:
|
|
description: Directory to compile in
|
|
include_helpers:
|
|
description: Whether or not to include helpers
|
|
default: "false"
|
|
args:
|
|
description: Extra arguments to be passed to latexmk
|
|
default: ""
|
|
extra_system_packages:
|
|
description: Install extra packages using apk
|
|
default: ""
|
|
runs:
|
|
using: docker
|
|
image: "docker://git.janishutz.com/registry/latex-build"
|
|
args:
|
|
- ${{ inputs.workdir }}
|
|
- ${{ inputs.include_helpers }}
|
|
- ${{ inputs.args }}
|
|
- ${{ inputs.extra_system_packages }}
|
|
branding:
|
|
icon: book
|
|
color: red
|