mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
Scripts and configuration files for publishing a
kustomize release on the releases page.
Build a release locally
Install cloud-build-local, then run
./build/localbuild.sh
to build artifacts under ./dist.
Publish a Release
Get on an up-to-date master branch:
git checkout master
git fetch upstream
git rebase upstream/master
Define the version (see semver principles), e.g.:
version=v1.0.3
Tag the repo:
git tag -a $version -m "$version release"
Push the tag upstream:
git push upstream $version
The new tag will trigger a job in Google Cloud Build to put a new release on the releases page.