Initial commit
This commit is contained in:
commit
b6a1b46519
3 changed files with 22 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
@ -0,0 +1,7 @@
|
|||
FROM archlinux
|
||||
|
||||
RUN pacman -Syu --noconfirm texlive-most texlive-bibtexextra texlive-fontsextra biber
|
||||
|
||||
COPY entrypoint.sh /root/
|
||||
|
||||
ENTRYPOINT ["/root/entrypoint.sh"]
|
14
action.yml
Normal file
14
action.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: "Latexmk"
|
||||
description: "Run latexmk with most latex packages"
|
||||
author: edpibu
|
||||
inputs:
|
||||
root_file:
|
||||
description: File to compile
|
||||
runs:
|
||||
using: "docker"
|
||||
image: "Dockerfile"
|
||||
args:
|
||||
- ${{ inputs.root_file }}
|
||||
branding:
|
||||
icon: book
|
||||
color: blue
|
1
entrypoint.sh
Normal file
1
entrypoint.sh
Normal file
|
@ -0,0 +1 @@
|
|||
latexmk $1
|
Loading…
Reference in a new issue