Initial commit

This commit is contained in:
Edgar P. Burkhart 2023-05-14 18:29:36 +02:00
commit de82e70d80
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
2 changed files with 10 additions and 0 deletions

5
Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM archlinux
RUN pacman -Syu --noconfirm texlive-most texlive-bibtextextra texlive-fontsextra biber
ENTRYPOINT ["latexmk"]

5
action.yml Normal file
View file

@ -0,0 +1,5 @@
name: "Latexmk"
description: "Run latexmk with most latex packages"
runs:
using: "docker"
image: "Dockerfile"