add dependencies
This commit is contained in:
parent
13eb32b03b
commit
ce5cd1646e
3 changed files with 7 additions and 2 deletions
|
@ -20,6 +20,7 @@ Inputs:
|
|||
* `chart_version` Explicitly specify chart version in package. If not defined then used chart values.
|
||||
* `index_dir` The location of `index.yaml` file in the repo, defaults to the same value as `target_dir`
|
||||
* `enterprise_url` The URL of enterprise github server in the format `<server-url>/<organisation>`
|
||||
* `dependencies` A list of helm repositories required to verify dependencies in the format `<name>,<url>;<name>,<url>`
|
||||
|
||||
## Examples
|
||||
|
||||
|
|
|
@ -51,7 +51,10 @@ inputs:
|
|||
required: false
|
||||
enterprise_url:
|
||||
description: "The URL of enterprise github server in the format '<server-url>/<organisation>'"
|
||||
required: false
|
||||
required: false
|
||||
dependencies:
|
||||
description: "A list of helm repositories required to verify dependencies in the format '<name>,<url>;<name>,<url>'"
|
||||
required: false
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
|
@ -71,3 +74,4 @@ runs:
|
|||
- ${{ inputs.chart_version }}
|
||||
- ${{ inputs.index_dir }}
|
||||
- ${{ inputs.enterprise_url }}
|
||||
- ${{ inputs.dependencies }}
|
||||
|
|
|
@ -95,7 +95,7 @@ main() {
|
|||
|
||||
locate
|
||||
download
|
||||
get_repo
|
||||
get_dependencies
|
||||
dependencies
|
||||
if [[ "$LINTING" != "off" ]]; then
|
||||
lint
|
||||
|
|
Loading…
Add table
Reference in a new issue