Ver código fonte

add entrypoint script to action

Mark Szepieniec 3 anos atrás
pai
commit
b6a462cc91
2 arquivos alterados com 4 adições e 1 exclusões
  1. 1 1
      actions/action.yml
  2. 3 0
      actions/entrypoint.sh

+ 1 - 1
actions/action.yml

@@ -4,4 +4,4 @@ description: 'Build a document using texlive'
 runs:
   using: 'docker'
   image: 'docker://ghcr.io/mszep/pandoc_resume/resume_builder:latest'
-  entrypoint: [sh, -c, make, pdf]
+  entrypoint: 'entrypoint.sh'

+ 3 - 0
actions/entrypoint.sh

@@ -0,0 +1,3 @@
+#!/bin/sh
+
+make pdf