From b82591fc450dc7540b2ab070a2bfda3d0d368e1c Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 Sep 2024 00:05:04 +0300 Subject: [PATCH] fix(action): Work around GH's Action marketplace syntax quoting shell args --- action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index fc114155..943a3348 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,10 @@ outputs: runs: using: docker image: docker://ghcr.io/sile-typesetter/casile:v0.14.2 - args: ${{ inputs.args }} + entrypoint: sh + args: + - -c + - casile ${{ inputs.args }} branding: icon: printer color: orange