Address review feedback

Signed-off-by: Steven Sheehy <steven.sheehy@hedera.com>
This commit is contained in:
Steven Sheehy 2020-08-10 15:33:16 -05:00
parent 46238520ad
commit bc6fa4a52e
3 changed files with 7 additions and 7 deletions

View file

@ -11,8 +11,8 @@ Inputs:
* `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
* `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 `.`
* `helm_version` The Helm CLI version, defaults to the latest release
## Examples

View file

@ -23,12 +23,12 @@ inputs:
branch:
description: "The branch to publish charts, defaults to `gh-pages`"
required: false
helm_version:
description: "The Helm CLI version"
required: false
target_dir:
description: "The target directory to store the charts, defaults to `.`"
required: false
helm_version:
description: "The Helm CLI version"
required: false
runs:
using: 'docker'
image: 'Dockerfile'
@ -39,5 +39,5 @@ runs:
- ${{ inputs.user }}
- ${{ inputs.repository }}
- ${{ inputs.branch }}
- ${{ inputs.helm_version }}
- ${{ inputs.target_dir }}
- ${{ inputs.helm_version }}

View file

@ -9,8 +9,8 @@ CHARTS_URL=$3
OWNER=$4
REPOSITORY=$5
BRANCH=$6
HELM_VERSION=$7
TARGET_DIR=$8
TARGET_DIR=$7
HELM_VERSION=$8
CHARTS=()
CHARTS_TMP_DIR=$(mktemp -d)