Merge pull request #10 from stefanprodan/linting-off
Add linting option
This commit is contained in:
commit
eeda28f933
3 changed files with 10 additions and 1 deletions
|
@ -13,6 +13,8 @@ Inputs:
|
|||
* `branch` The branch to publish charts, defaults to `gh-pages`
|
||||
* `target_dir` The target directory to store the charts, defaults to `.`
|
||||
* `helm_version` The Helm CLI version, defaults to the latest release
|
||||
* `helm_version` The Helm CLI version, defaults to the latest release
|
||||
* `linting` Toggle Helm linting, can be disabled by setting it to `off`
|
||||
|
||||
## Examples
|
||||
|
||||
|
|
|
@ -29,6 +29,9 @@ inputs:
|
|||
helm_version:
|
||||
description: "The Helm CLI version"
|
||||
required: false
|
||||
linting:
|
||||
description: "Toggle Helm linting, can be disabled by setting it to 'off'"
|
||||
required: false
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
|
@ -41,3 +44,4 @@ runs:
|
|||
- ${{ inputs.branch }}
|
||||
- ${{ inputs.target_dir }}
|
||||
- ${{ inputs.helm_version }}
|
||||
- ${{ inputs.linting }}
|
||||
|
|
|
@ -25,6 +25,7 @@ REPOSITORY=$5
|
|||
BRANCH=$6
|
||||
TARGET_DIR=$7
|
||||
HELM_VERSION=$8
|
||||
LINTING=$9
|
||||
|
||||
CHARTS=()
|
||||
CHARTS_TMP_DIR=$(mktemp -d)
|
||||
|
@ -71,7 +72,9 @@ main() {
|
|||
locate
|
||||
download
|
||||
dependencies
|
||||
lint
|
||||
if [[ "$LINTING" != "off" ]]; then
|
||||
lint
|
||||
fi
|
||||
package
|
||||
upload
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue