From bf978b222bf5198d249d555b065d89b1bf1cdfd0 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Fri, 19 Jul 2024 15:28:35 +0500 Subject: [PATCH] Fix args position. --- action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 56f75c7..0ddfb5a 100644 --- a/action.yml +++ b/action.yml @@ -15,5 +15,4 @@ runs: using: "docker" image: "Dockerfile" args: - - ${{ inputs.command }} - - ${{ inputs.args }} + - ${{ inputs.command }} ${{ inputs.args }}