Releasing
How to Release
git tag v0.1.0
git push origin v0.1.0That’s it. The CI pipeline handles the rest.
What CI Does on Tag Push
- Lint — golangci-lint
- Unit tests —
make test(envtest) - E2E tests — Chainsaw on kind
- Build multi-arch image —
linux/amd64+linux/arm64→ghcr.io/breee/drop:<tag> - Package Helm chart — push to OCI registry
- GitHub Release — auto-generated release notes
Versioning
| Format | Example | Use |
|---|---|---|
| Stable | v0.1.0 | Production release |
| Pre-release | v0.1.0-rc.1 | Testing before stable |
Chart version in charts/drop/Chart.yaml tracks the app version.
CI Workflows
| Workflow | Trigger | Purpose |
|---|---|---|
ci.yml | Push, PR | Lint + test + build + e2e |
release.yml | Tag push | Multi-arch build + publish |
docs.yml | docs/ changes | Hugo build + GitHub Pages deploy |
Last updated on