Closed feynmanliang closed 4 weeks ago
Describe the bug
When the OCI password contains a ")", this action fails with "bash: syntax error near unexpected token `)'".
Root cause is https://github.com/appany/helm-oci-chart-releaser/blob/main/action.yaml#L45 does not escape its input.
Current workaround is to escape manually in the yaml
registry_password: "\"mypass)\""
Would be nice if escaping was handled in the action instead.
@feynmanliang PRs are welcome!
Describe the bug
When the OCI password contains a ")", this action fails with "bash: syntax error near unexpected token `)'".
Root cause is https://github.com/appany/helm-oci-chart-releaser/blob/main/action.yaml#L45 does not escape its input.
Current workaround is to escape manually in the yaml
Would be nice if escaping was handled in the action instead.