Skip to content

Commit

Permalink
Fix structure: inputs belong to workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelherger committed Jan 24, 2024
1 parent 8aca047 commit 23d6073
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/buildCPANDebian.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 23d6073

Please # to comment.