Skip to content

Commit bc6fa4a

Browse files
committed
Address review feedback
Signed-off-by: Steven Sheehy <steven.sheehy@hedera.com>
1 parent 4623852 commit bc6fa4a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Inputs:
1111
* `owner` The GitHub user or org that owns this repository, defaults to the owner in `GITHUB_REPOSITORY` env var
1212
* `repository` The GitHub repository, defaults to the `GITHUB_REPOSITORY` env var
1313
* `branch` The branch to publish charts, defaults to `gh-pages`
14-
* `helm_version` The Helm CLI version, defaults to the latest release
1514
* `target_dir` The target directory to store the charts, defaults to `.`
15+
* `helm_version` The Helm CLI version, defaults to the latest release
1616

1717
## Examples
1818

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ inputs:
2323
branch:
2424
description: "The branch to publish charts, defaults to `gh-pages`"
2525
required: false
26-
helm_version:
27-
description: "The Helm CLI version"
28-
required: false
2926
target_dir:
3027
description: "The target directory to store the charts, defaults to `.`"
3128
required: false
29+
helm_version:
30+
description: "The Helm CLI version"
31+
required: false
3232
runs:
3333
using: 'docker'
3434
image: 'Dockerfile'
@@ -39,5 +39,5 @@ runs:
3939
- ${{ inputs.user }}
4040
- ${{ inputs.repository }}
4141
- ${{ inputs.branch }}
42-
- ${{ inputs.helm_version }}
4342
- ${{ inputs.target_dir }}
43+
- ${{ inputs.helm_version }}

src/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ CHARTS_URL=$3
99
OWNER=$4
1010
REPOSITORY=$5
1111
BRANCH=$6
12-
HELM_VERSION=$7
13-
TARGET_DIR=$8
12+
TARGET_DIR=$7
13+
HELM_VERSION=$8
1414

1515
CHARTS=()
1616
CHARTS_TMP_DIR=$(mktemp -d)

0 commit comments

Comments
 (0)