From 73268d5700cee2ae895464eb6ba22586f435f2db Mon Sep 17 00:00:00 2001 From: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> Date: Sun, 5 Jan 2025 21:30:34 -0500 Subject: [PATCH] [setup](build): from pandoc_resume Signed-off-by: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> --- action.yml | 7 +++++++ entrypoint.sh | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 action.yml create mode 100644 entrypoint.sh 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"