浏览代码

add entrypoint script to action

Mark Szepieniec 3 年之前
父节点
当前提交
b6a462cc91
共有 2 个文件被更改,包括 4 次插入1 次删除
  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