From 6a34d0cb46c502ed1adcc28d0a60ff5ed2eb72cf Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Tue, 23 Dec 2025 09:10:03 +0100 Subject: [PATCH] Add --- README.md | 0 action.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 README.md create mode 100644 action.yml diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..2b7acbd --- /dev/null +++ b/action.yml @@ -0,0 +1,19 @@ +name: LaTeX Full Compilation +description: Compile LaTeX documents with preset container that supports minted +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: git.janishutz.com/registry/latex-build-full:latest + args: + - ${{ inputs.args }} + - ${{ inputs.extra_system_packages }} +branding: + icon: book + color: red