You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-procedure.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,11 +31,12 @@ critical bug fixes.
31
31
4. Once the PR is merged, make a tag and push it to the upstream repository.
32
32
33
33
```bash
34
-
$ git checkout -b release-X.Y upstream master
35
-
$ git pull upstream release-X.Y --tags
36
-
$ git tag -m "Release for cloud-provider-openstack to support Kubernetes release x"vX.Y.Z
34
+
$ git checkout master
35
+
$ git pull upstream master
36
+
$ git tag vX.Y.Z
37
37
$ git push upstream vX.Y.Z
38
-
$ git push upstream release-X.Y
38
+
$ git checkout -b release-X.Y
39
+
$ git push origin release-X.Y
39
40
```
40
41
41
42
5. [Github Actions](https://github.com/kubernetes/cloud-provider-openstack/actions/workflows/release-cpo.yaml) will create new [Docker images](https://console.cloud.google.com/gcr/images/k8s-staging-provider-os) and generate a [new draft release](https://github.com/kubernetes/cloud-provider-openstack/releases) in the repository.
0 commit comments