From 6a664072b545c27640000f82a34f71f143bf69b9 Mon Sep 17 00:00:00 2001 From: Marco Franssen Date: Wed, 6 Oct 2021 14:50:06 +0200 Subject: [PATCH] Remove - from commandline flags as only one is necessary Co-authored-by: Brend Smits --- action.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yaml b/action.yaml index fa97898f..67741a07 100644 --- a/action.yaml +++ b/action.yaml @@ -24,11 +24,11 @@ runs: image: 'Dockerfile' args: - "generate" - - "--artifact_path" + - "-artifact_path" - '${{ inputs.artifact_path }}' - - "--output_path" + - "-output_path" - '${{ inputs.output_path }}' - - "--github_context" + - "-github_context" - '${{ inputs.github_context }}' - - "--runner_context" + - "-runner_context" - '${{ inputs.runner_context }}'