From 6dc20b92e2ecac16d5aec342ec95abd9607ef1a4 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 22 Dec 2025 18:25:50 +0100 Subject: [PATCH] Add --- README.md | 0 action.yml | 22 ++++++++++++++++++++++ 2 files changed, 22 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..9b66b9b --- /dev/null +++ b/action.yml @@ -0,0 +1,22 @@ +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: "" + image: + description: The image to use for the run + default: "git.janishut.com/registry/latex-build" +runs: + using: docker + image: ${{ inputs.image }} + args: + - ${{ inputs.args }} + - ${{ inputs.extra_system_packages }} +branding: + icon: book + color: red