Skip to content

Commit

Permalink
Change descriptions and type of inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasas993 committed Nov 21, 2024
1 parent b9302e3 commit 4cdd185
Showing 1 changed file with 30 additions and 20 deletions.
50 changes: 30 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,76 +8,86 @@ on:
workflow_dispatch:
inputs:
revision:
description: "Revision"
description: "Revision number of the package."
type: string
default: "0"
required: false
upload:
description: "Upload ?"
description: "Enable to upload the packages to the S3 bucket."
type: boolean
default: false
is_stage:
description: "Is stage ?"
description: "Enable to use the release naming nomenclature."
type: boolean
default: false
distribution:
description: '[ "tar", "rpm", "deb" ]'
type: string
default: '[ "rpm", "deb" ]'
description: "Distribution format of the package [tar, rpm, deb]."
type: choice
options:
- '[ "tar" ]'
- '[ "deb" ]'
- '[ "rpm" ]'
- '[ "tar", "deb" ]'
- '[ "tar", "rpm" ]'
- '[ "deb", "rpm" ]'
- '[ "tar", "deb", "rpm" ]'
default: '[ "deb", "rpm" ]'
required: true
architecture:
description: '[ "x64", "arm64" ]'
type: string
default: '[ "x64", "arm64" ]'
description: "Architecture of the package [x64, arm64]."
type: choice
options:
- '[ "x64" ]'
- '[ "arm64" ]'
- '[ "x64", "arm64" ]'
default: '[ "x64", "arm64" ]'
required: true
checksum:
description: "Checksum ?"
description: |
Enable to generate the MD5 checksums of the packages.
If the upload to the S3 bucket is enabled, these will be uploaded too.
type: boolean
default: false
id:
description: "ID used to identify the workflow uniquely."
type: string
required: false
wazuh_plugins_ref:
description: "Branch, commit or tag for the wazuh-indexer-plugins repository"
description: "Branch, commit or tag for the wazuh-indexer-plugins repository."
type: string
default: "master"
reporting_plugin_ref:
description: "Branch, commit or tag for the wazuh-indexer-reporting repository"
description: "Branch, commit or tag for the wazuh-indexer-reporting repository."
type: string
default: "master"
workflow_call:
inputs:
revision:
description: "Revision"
type: string
default: "0"
required: false
upload:
description: "Upload ?"
type: boolean
default: false
is_stage:
description: "Is stage ?"
type: boolean
default: false
distribution:
description: '[ "tar", "rpm", "deb" ]'
type: string
default: '[ "rpm", "deb" ]'
architecture:
description: '[ "x64", "arm64" ]'
type: string
default: '[ "x64", "arm64" ]'
checksum:
description: "Checksum ?"
type: boolean
default: false
id:
type: string
required: false
wazuh_plugins_ref:
description: "Branch, commit or tag for the wazuh-indexer-plugins repository"
type: string
default: "master"
reporting_plugin_ref:
description: "Branch, commit or tag for the wazuh-indexer-reporting repository"
type: string
default: "master"
secrets:
Expand Down

0 comments on commit 4cdd185

Please sign in to comment.