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 action menu Check action result. action item

Contents

  1. 1Create new branch
  2. 2Edit release file
  3. 3Build manifests and binaries
  4. 4Check github action progress