Address review feedback
Signed-off-by: Steven Sheehy <steven.sheehy@hedera.com>
This commit is contained in:
parent
46238520ad
commit
bc6fa4a52e
3 changed files with 7 additions and 7 deletions
|
@ -11,8 +11,8 @@ Inputs:
|
||||||
* `owner` The GitHub user or org that owns this repository, defaults to the owner in `GITHUB_REPOSITORY` env var
|
* `owner` The GitHub user or org that owns this repository, defaults to the owner in `GITHUB_REPOSITORY` env var
|
||||||
* `repository` The GitHub repository, defaults to the `GITHUB_REPOSITORY` env var
|
* `repository` The GitHub repository, defaults to the `GITHUB_REPOSITORY` env var
|
||||||
* `branch` The branch to publish charts, defaults to `gh-pages`
|
* `branch` The branch to publish charts, defaults to `gh-pages`
|
||||||
* `helm_version` The Helm CLI version, defaults to the latest release
|
|
||||||
* `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
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|
|
@ -23,12 +23,12 @@ inputs:
|
||||||
branch:
|
branch:
|
||||||
description: "The branch to publish charts, defaults to `gh-pages`"
|
description: "The branch to publish charts, defaults to `gh-pages`"
|
||||||
required: false
|
required: false
|
||||||
helm_version:
|
|
||||||
description: "The Helm CLI version"
|
|
||||||
required: false
|
|
||||||
target_dir:
|
target_dir:
|
||||||
description: "The target directory to store the charts, defaults to `.`"
|
description: "The target directory to store the charts, defaults to `.`"
|
||||||
required: false
|
required: false
|
||||||
|
helm_version:
|
||||||
|
description: "The Helm CLI version"
|
||||||
|
required: false
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
image: 'Dockerfile'
|
image: 'Dockerfile'
|
||||||
|
@ -39,5 +39,5 @@ runs:
|
||||||
- ${{ inputs.user }}
|
- ${{ inputs.user }}
|
||||||
- ${{ inputs.repository }}
|
- ${{ inputs.repository }}
|
||||||
- ${{ inputs.branch }}
|
- ${{ inputs.branch }}
|
||||||
- ${{ inputs.helm_version }}
|
|
||||||
- ${{ inputs.target_dir }}
|
- ${{ inputs.target_dir }}
|
||||||
|
- ${{ inputs.helm_version }}
|
||||||
|
|
|
@ -9,8 +9,8 @@ CHARTS_URL=$3
|
||||||
OWNER=$4
|
OWNER=$4
|
||||||
REPOSITORY=$5
|
REPOSITORY=$5
|
||||||
BRANCH=$6
|
BRANCH=$6
|
||||||
HELM_VERSION=$7
|
TARGET_DIR=$7
|
||||||
TARGET_DIR=$8
|
HELM_VERSION=$8
|
||||||
|
|
||||||
CHARTS=()
|
CHARTS=()
|
||||||
CHARTS_TMP_DIR=$(mktemp -d)
|
CHARTS_TMP_DIR=$(mktemp -d)
|
||||||
|
|
Loading…
Add table
Reference in a new issue