Skip to content

Commit

Permalink
Fixed invalid field names
Browse files Browse the repository at this point in the history
  • Loading branch information
Jari Maijenburg committed Mar 6, 2022
1 parent d3b8ddb commit a24d7d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Github action that performs a [Helm](https://helm.sh/) deployment with support f
- `atomic`: If true, upgrade process rolls back changes made in case of failed upgrade. Defaults to true.
- `timeout`: specify a timeout for helm deployment
- `image`: Image to deploy. Overrides the image.name value.
- `imageFields`: Fields to insert the image name in. Expects JSON encoded array or a string. Defaults to "image.name".
- `image-fields`: Fields to insert the image name in. Expects JSON encoded array or a string. Defaults to "image.name".
- `tag`: Image tag to deploy, usually commit sha or Git tag. Overrides the image.tag value.
- `tagFields`: Fields to insert the image tags in. Expects JSON encoded array or a string. Defaults to "image.tag".
- `tag-fields`: Fields to insert the image tags in. Expects JSON encoded array or a string. Defaults to "image.tag".

### Environment

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ inputs:
image:
description: Image to deploy. Overrides the values specified by imageFields.
required: false
imageFields:
image-fields:
description: Fields to insert the image name in. Expects JSON encoded array or a string. Defaults to "image.name".
required: false
tag:
description: Image tag to deploy, usually commit sha or Git tag. Overrides the values specified by tagFields.
required: false
tagFields:
tag-fields:
description: Fields to insert the image tags in. Expects JSON encoded array or a string. Defaults to "image.tag".
required: false
runs:
Expand Down

0 comments on commit a24d7d1

Please sign in to comment.