@@ -57,32 +57,32 @@ The process for cutting a minor release is as follows:
5757
58582 . Create or update the release branch
5959
60- If this is the first ( ` alpha1 ` ) release , then you will need to create
61- the release branch:
60+ If this is the first alpha release ( ` alpha.0 ` ) , then you will need to create
61+ the release branch:
6262
63- ``` bash
64- git fetch --all
65- git checkout -b release-1.0 origin/master
66- ```
63+ ``` bash
64+ git fetch --all
65+ git checkout -b release-1.0 origin/master
66+ ```
6767
68- If there has already been an ` alpha1 ` release, the release branch will
69- already exist, so you will need to update it with the latest commits
70- from the master branch, as follows:
68+ If there has already been an alpha release, the release branch will
69+ already exist, so you will need to update it with the latest commits
70+ from the master branch, as follows:
7171
72- ` ` ` bash
73- git fetch --all
74- git branch --force release-1.0 origin/release-1.0
75- git checkout release-1.0
76- git merge --ff-only origin/master
77- ` ` `
72+ ``` bash
73+ git fetch --all
74+ git branch --force release-1.0 origin/release-1.0
75+ git checkout release-1.0
76+ git merge --ff-only origin/master
77+ ```
7878
79793 . Push it to the ` jetstack/cert-manager ` repository
8080
81- ` ` ` bash
82- git push --set-upstream origin
83- ` ` `
81+ ``` bash
82+ git push --set-upstream origin
83+ ```
8484
85- > ⚠️ You need to be an " admin" to be able to push to ` release-1.0` .
85+ > ⚠️ You need to be an "admin" to be able to push to ` release-1.0 ` .
8686
87874 . [ Generate and edit the release notes] ( #generating-and-editing-the-release-notes )
8888
0 commit comments