Merge pull request #10 from stefanprodan/linting-off

Add linting option
This commit is contained in:
Stefan Prodan 2020-08-21 16:52:22 +03:00 committed by GitHub
commit eeda28f933
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 1 deletions

View file

@ -13,6 +13,8 @@ Inputs:
* `branch` The branch to publish charts, defaults to `gh-pages` * `branch` The branch to publish charts, defaults to `gh-pages`
* `target_dir` The target directory to store the charts, defaults to `.` * `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
* `helm_version` The Helm CLI version, defaults to the latest release
* `linting` Toggle Helm linting, can be disabled by setting it to `off`
## Examples ## Examples

View file

@ -29,6 +29,9 @@ inputs:
helm_version: helm_version:
description: "The Helm CLI version" description: "The Helm CLI version"
required: false required: false
linting:
description: "Toggle Helm linting, can be disabled by setting it to 'off'"
required: false
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'
@ -41,3 +44,4 @@ runs:
- ${{ inputs.branch }} - ${{ inputs.branch }}
- ${{ inputs.target_dir }} - ${{ inputs.target_dir }}
- ${{ inputs.helm_version }} - ${{ inputs.helm_version }}
- ${{ inputs.linting }}

View file

@ -25,6 +25,7 @@ REPOSITORY=$5
BRANCH=$6 BRANCH=$6
TARGET_DIR=$7 TARGET_DIR=$7
HELM_VERSION=$8 HELM_VERSION=$8
LINTING=$9
CHARTS=() CHARTS=()
CHARTS_TMP_DIR=$(mktemp -d) CHARTS_TMP_DIR=$(mktemp -d)
@ -71,7 +72,9 @@ main() {
locate locate
download download
dependencies dependencies
lint if [[ "$LINTING" != "off" ]]; then
lint
fi
package package
upload upload
} }