From a24d7d10543a7a7919514a36d667667c0a3fc4e3 Mon Sep 17 00:00:00 2001 From: Jari Maijenburg Date: Sun, 6 Mar 2022 21:55:12 +0100 Subject: [PATCH] Fixed invalid field names --- README.md | 4 ++-- action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b3403d7..0d30115 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/action.yml b/action.yml index edf3947..1f10f04 100644 --- a/action.yml +++ b/action.yml @@ -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: