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
@tisonkun any thoughts on how to generate the original index.yaml? I seem to have the same problem, but lost the original version. I can't seem to start over, deleted the gh-pages branch, and everything I have done has made no difference. I continue to get the Nothing to do. No chart changes detected. error
Update:
I came across this thread: #92 and learned a few things:
I had been using an on-tag, and switched to on-push instead (not sure if that was my problem, but might have helped)
I was "cutting a git release" before the chart-releaser ran, and it thought there were no new changes, so moving that stage after the chart-releaser unblocked me.
in the github action, you can set the CR_SKIP_EXISTING environment variable to overwrite an existing tag. Note: if there are already newer versions, you might be better off deleting the gh-branch, recreating it, and forcing index.yaml to be regenerated the next time the action is triggered:
name: Run chart-releaseruses: helm/[email protected]env:
CR_TOKEN: "${{ secrets.CR_TOKEN }}"CR_SKIP_EXISTING: true
Said I'm doing manually releases before and now switch to
chart-releaser-action
. It seems all runs will be filtered out because:See https://github.com/tisonkun/pulsar-helm-chart/actions/runs/3109884015/jobs/5040526282.
What's the best way to switch the release workflow?
The text was updated successfully, but these errors were encountered: