diff --git a/README.md b/README.md index c9c46a3..9247f9b 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/action.yml b/action.yml index 1ab5448..27f03bb 100644 --- a/action.yml +++ b/action.yml @@ -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 }} diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 416f879..7c7452e 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -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 }