Skip to content

Commit

Permalink
Use choice as input types for system and architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRuiz7 committed Mar 26, 2024
1 parent 9d273e1 commit 81f54d2
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/build_single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,19 @@ on:
type: boolean
default: false
system:
description: "One of 'tar', 'rpm', 'deb'"
type: string
default: "rpm"
description: "Package OS"
type: choice
options:
- rpm
- deb
default: deb
architecture:
description: "One of 'amd64', 'x86_64'"
type: string
default: "x86_64"
description: "Package architecture"
type: choice
options:
- amd64
- x86_64
default: amd64

jobs:
call-build-workflow:
Expand Down

0 comments on commit 81f54d2

Please sign in to comment.