Skip to content

Commit

Permalink
Change the values of choice because matrix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasas993 committed Nov 18, 2024
1 parent f35919d commit f29affc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ on:
description: "Package format [tar, rpm, deb]"
type: choice
options:
- rpm
- deb
- tar
default: '[ "rpm", "deb" ]'
- ["rpm"]
- ["deb"]
- ["tar"]
default: '["rpm","deb"]'
required: true
architecture:
description: "Architecture of the package [x64, arm64]"
type: choice
options:
- x64
- arm64
default: '[ "x64", "arm64" ]'
- ["x64"]
- ["arm64"]
default: '["x64","arm64"]'
required: true
checksum:
description: "Generate package checksum?"
Expand Down

0 comments on commit f29affc

Please sign in to comment.