From 23d60733d566110fab7b3e2620ca607fe1f059b4 Mon Sep 17 00:00:00 2001 From: Michael Herger Date: Wed, 24 Jan 2024 07:08:30 +0100 Subject: [PATCH] Fix structure: inputs belong to workflow_dispatch --- .github/workflows/buildCPANDebian.yaml | 48 +++++++++++++------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/buildCPANDebian.yaml b/.github/workflows/buildCPANDebian.yaml index becf9b148..61d18abbc 100644 --- a/.github/workflows/buildCPANDebian.yaml +++ b/.github/workflows/buildCPANDebian.yaml @@ -1,28 +1,28 @@ name: Build Perl CPAN modules for Logitech Media Server -on: [workflow_dispatch] - -inputs: - flavour: - description: The Linux flavour we're building for. Currently 'debian' or 'fedora' only. - type: choice - options: - - debian - - fedora - required: true - default: debian - platform: - description: The hardware platform for which to build. - type: choice - options: - - amd64 - - aarch64 - - armv7 - required: true - default: amd64 - module: - description: A specific module you'd like to build. Defaults to all modules if none is specified. - type: string - required: false +on: + workflow_dispatch: + inputs: + flavour: + description: The Linux flavour we're building for. Currently 'debian' or 'fedora' only. + type: choice + options: + - debian + - fedora + required: true + default: debian + platform: + description: The hardware platform for which to build. + type: choice + options: + - amd64 + - aarch64 + - armv7 + required: true + default: amd64 + module: + description: A specific module you'd like to build. Defaults to all modules if none is specified. + type: string + required: false jobs: linux: