From 21040eaa658bf4de8c6415209fb04c342fc48792 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Fri, 19 Jul 2024 23:19:23 +0500 Subject: [PATCH] Get rid of command-args separation. --- action.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/action.yml b/action.yml index 0ddfb5a..d88944d 100644 --- a/action.yml +++ b/action.yml @@ -3,16 +3,12 @@ name: "Go Toolbox" description: "A toolbox for golang applications development." author: "Stanislav N. aka pztrn" inputs: - command: # id of input + command: description: "Command to run." required: true - default: "task" - args: - description: "Arguments to pass to command." - required: true - default: "-l" + default: "task -l" runs: using: "docker" image: "Dockerfile" args: - - ${{ inputs.command }} ${{ inputs.args }} + - ${{ inputs.command }}