From 16d5779db447bc492946d94e3d569f5f45386961 Mon Sep 17 00:00:00 2001 From: Frank Halasz Date: Tue, 21 Jun 2022 16:54:58 -0700 Subject: [PATCH] Fix inputs: clause in buildDocker.yml (#794) --- .github/workflows/buildDocker.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/buildDocker.yml b/.github/workflows/buildDocker.yml index 771330de..b4797b1d 100644 --- a/.github/workflows/buildDocker.yml +++ b/.github/workflows/buildDocker.yml @@ -20,12 +20,13 @@ name: 'Build/Push Docker Image' # Run this workflow on ... on: workflow_dispatch: - force: - description: "Force build even if build already successfully completed for this commit" - type: choice - options: - - 'false' - - 'true' + inputs: + force: + description: "Force build even if build already successfully completed for this commit" + type: choice + options: + - 'false' + - 'true' workflow_call: outputs: @@ -242,4 +243,4 @@ jobs: run: | echo ::set-output name=build_successful::'true' -###################################################################################### \ No newline at end of file +######################################################################################