File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,10 +39,12 @@ It should look like:
3939 $ echo $VERSION
4040 ```
4141
42- 2. Make a new branch from the latest `main` with `git neco dev bump-v$VERSION`.
42+ 2. Make a new branch from the latest `main` with `git checkout -b bump-v$VERSION`.
4343
4444 ```console
45- $ git neco dev "bump-v$VERSION"
45+ $ git checkout main
46+ $ git pull
47+ $ git checkout -b "bump-v$VERSION"
4648 ```
4749
48503. Update version strings in `kustomization.yaml` and `version.go`.
@@ -51,7 +53,8 @@ It should look like:
5153
5254 ```console
5355 $ git commit -a -m "Bump version to v$VERSION"
54- $ git neco review
56+ $ git push -u origin HEAD
57+ $ gh pr create -f
5558 ```
5659
57606. Merge the new pull request.
@@ -89,10 +92,12 @@ This will prevent the MOCO version from going up just by modifying the Helm Char
8992 $ echo $APPVERSION $CHARTVERSION
9093 ```
9194
92- 2. Make a new branch from the latest `main` with `git neco dev bump-chart-v$CHARTVERSION`.
95+ 2. Make a new branch from the latest `main` with `git checkout -b bump-chart-v$CHARTVERSION`.
9396
9497 ```console
95- $ git neco dev "bump-chart-v$CHARTVERSION"
98+ $ git checkout main
99+ $ git pull
100+ $ git checkout -b "bump-chart-v$CHARTVERSION"
96101 ```
97102
981033. Update version strings:
@@ -108,7 +113,8 @@ This will prevent the MOCO version from going up just by modifying the Helm Char
108113
109114 ```console
110115 $ git commit -a -m "Bump chart version to v$CHARTVERSION"
111- $ git neco review
116+ $ git push -u origin HEAD
117+ $ gh pr create -f
112118 ```
113119
1141206. Merge the new pull request.
You can’t perform that action at this time.
0 commit comments