You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Helm chart releaser action seems to not be detecting changes to the chart files unless they are on the latest commit the action is being triggered by.
The Helm chart releaser action seems to not be detecting changes to the chart files unless they are on the latest commit the action is being triggered by.
It is likely caused by this configuration:
fetch-depth
(see https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---depthltdepthgt) only checks-out the latest commit, which may not contain the changes to the chart. Removing the option, or usingunshallow
(see https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---unshallow) might be the way to go.The text was updated successfully, but these errors were encountered: