From dd34d68fc838963de2b5081821ab432d8878d7a8 Mon Sep 17 00:00:00 2001 From: orhun Date: Fri, 18 Jun 2021 03:16:54 +0300 Subject: [PATCH] fix(test): remove the quotes around image arguments --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 3686223..7db4d81 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ runs: using: "docker" image: "Dockerfile" args: - - "${{ inputs.args }} -c ${{ inputs.config }}" + - ${{ inputs.args }} -c ${{ inputs.config }} branding: icon: "triangle" color: "orange"