Skip to content
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

Chart releaser action does not detect changes unless they are in the latest commit #326

Closed
esune opened this issue Sep 5, 2023 · 1 comment
Assignees
Labels
2.0 Work related to 2.0 release bug Something isn't working

Comments

@esune
Copy link
Member

esune commented Sep 5, 2023

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:

steps:
      - name: Checkout
        uses: actions/checkout@v2
        with:
          fetch-depth: 0

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 using unshallow (see https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---unshallow) might be the way to go.

@esune esune added 2.0 Work related to 2.0 release bug Something isn't working labels Sep 5, 2023
@esune
Copy link
Member Author

esune commented Sep 20, 2023

Resolved by #343

@esune esune closed this as completed Sep 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
2.0 Work related to 2.0 release bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants