helm install godon oci://ghcr.io/godon-dev/charts/godonhelm repo add godon https://godon-dev.github.io/godon-charts/charts
helm install godon godon/godonGit tag is the source of truth. The chart version is automatically updated to match the tag.
-
Commit any chart changes (don't worry about version):
# Make your changes... git add charts/ git commit -m "Update chart" git push
-
Create git tag (this sets the version):
git tag v0.2.11 git push origin v0.2.11
-
Create GitHub Release:
gh release create v0.2.11 # Or via GitHub UI -
Workflow automatically:
- ✅ Updates Chart.yaml to match tag
- ✅ Publishes to OCI:
oci://ghcr.io/godon-dev/charts/godon - ✅ Publishes to GitHub Pages:
https://godon-dev.github.io/godon-charts/charts - ✅ Updates
index.yaml - ✅ Attaches chart
.tgzto release
Note: Chart version in Chart.yaml will be overwritten by the tag version during release.