From 52cf98ed632e44ad80130b470b1985127238290b Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 13 Sep 2023 19:00:04 +0200 Subject: [PATCH] fix: allow multiple arguments --- action.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/action.yml b/action.yml index e784f5c..bba684b 100644 --- a/action.yml +++ b/action.yml @@ -11,11 +11,10 @@ inputs: args: description: 'appimage-builder arguments' required: false - default: '--skip-test' + default: '--skip-tests' runs: - using: 'docker' - image: docker://appimagecrafters/appimage-builder:1.1.0 - args: - - appimage-builder - - '--recipe=${{ inputs.recipe }}' - - '${{ inputs.args }}' + using: composite + steps: + - uses: docker://appimagecrafters/appimage-builder:1.1.0 + with: + args: appimage-builder --recipe=${{inputs.recipe}} ${{inputs.args}}