diff --git a/action.yml b/action.yml new file mode 100644 index 00000000..5da9ab10 --- /dev/null +++ b/action.yml @@ -0,0 +1,7 @@ +# action.yml +name: 'Texlive Build' +description: 'Build a document using texlive' +runs: + using: 'docker' + image: 'docker://ghcr.io/mszep/pandoc_resume:master' + entrypoint: '/entrypoint.sh' diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 00000000..087485a9 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +sh -c "cd /home/app/resume && make pdf"