Initial commit
This commit is contained in:
commit
b3722222ed
3 changed files with 31 additions and 0 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
FROM ubuntu
|
||||||
|
|
||||||
|
RUN apt-get update -y
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y texlive-full
|
||||||
|
|
||||||
|
COPY entrypoint.sh /root/
|
||||||
|
|
||||||
|
ENTRYPOINT ["/root/entrypoint.sh"]
|
17
action.yml
Normal file
17
action.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: "Latexmk"
|
||||||
|
description: "Run latexmk with most latex packages"
|
||||||
|
author: edpibu
|
||||||
|
inputs:
|
||||||
|
root_file:
|
||||||
|
description: File to compile
|
||||||
|
working_directory:
|
||||||
|
description: Working directory
|
||||||
|
runs:
|
||||||
|
using: "docker"
|
||||||
|
image: "Dockerfile"
|
||||||
|
args:
|
||||||
|
- ${{ inputs.working_directory }}
|
||||||
|
- ${{ inputs.root_file }}
|
||||||
|
branding:
|
||||||
|
icon: book
|
||||||
|
color: blue
|
6
entrypoint.sh
Executable file
6
entrypoint.sh
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd $1
|
||||||
|
latexmk $2
|
Loading…
Reference in a new issue