From 2e06fddb29c376719aa2dba7dbdb309a697831bd Mon Sep 17 00:00:00 2001 From: orhun Date: Fri, 18 Jun 2021 03:30:30 +0300 Subject: [PATCH] fix(style): use input values as separate arguments --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f208c1f..5450b4f 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,8 @@ runs: using: "docker" image: "Dockerfile" args: - - "'${{ inputs.args }}' -c '${{ inputs.config }}'" + - -c ${{ inputs.config }} + - ${{ inputs.args }} branding: icon: "triangle" color: "orange"