Skip to content

Commit

Permalink
Set build workflow inputs to required
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRuiz7 committed Jan 19, 2024
1 parent f38276b commit e3888e3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
revision:
# description:
default: "1"
required: false
required: true
type: string

# ==========================
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/r_assemble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
distribution:
description: 'One of [ "tar", "rpm", "deb" ]'
default: "rpm"
required: false
required: true
type: string
architecture:
description: 'One of [ "x64", "arm64" ]'
default: "x64"
required: false
required: true
type: string
min:
description: The name of the package to download.
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/r_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@ on:
distribution:
description: 'One of [ "tar", "rpm", "deb" ]'
default: "rpm"
required: false
required: true
type: string
architecture:
description: 'One of [ "x64", "arm64" ]'
default: "x64"
required: false
required: true
type: string
revision:
type: string
required: true
default: "1"
name:
description: The name of the package to upload.
required: true
Expand Down

0 comments on commit e3888e3

Please sign in to comment.