-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
list-changed command fails without error #69
Comments
Running into the same issue here. @sundowndev where you able to fix the problem? |
No. I ended up removing this step from my workflow. |
Same issue |
It's working fine with me and returns the changed charts under dir helm/ [ where all my charts are listed ] You must pass the following: |
@sundowndev , @wissamataleh , @afritzler you probably have the same issues as we had. To get it working add the option - name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch main)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi the same thing applies to the |
@mathewmeconry Look at my OP, I have this option in the
|
After testing it looks like ct.yaml is ignored/not used by chart tester in this action. You must specify the flags for the commands individually. |
Fixes helm#69 Signed-off-by: Hervé Le Meur <hlemeur@cloudbees.com>
Fixes helm#69 Signed-off-by: Hervé Le Meur <hlemeur@cloudbees.com>
Fixes #69 Signed-off-by: Hervé Le Meur <hlemeur@cloudbees.com>
I try to set up a basic helm chart repo but I'm stuck with this issue :
I also tried running
ct list-changed
directly but it does not show anything.my workflow:
ct.yaml
file structure :
The text was updated successfully, but these errors were encountered: