How to start new release branch
April 14, 2022 ยท View on GitHub
We'd like to start a new branch, say 0.19.0
Create new branch
git checkout -b 0.19.0
Edit release file
echo "0.19.0" > release
git add .
git commit -m "0.19.0"
Build manifests and binaries
./dev/go_build_all.sh
git add .
git commit -m "env: manifests"
git push
Check github action progress
Navigate to github Actions
Check action result.
