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/dev/release.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,12 +45,21 @@ Expect this branch to include the Software Security Development Lifecycle Policy
45
45
46
46
## Approve the Pull Request named "Release x.y.z"
47
47
48
-
Review the Pull Request. Approve and merge it to `main`.
49
-
The new job "Create Release" will be triggered and the following will be done:
48
+
1. Review the Pull Request.
49
+
1. Approve and merge it to `main`.
50
+
51
+
At this point `main` represents what would become the next release, cut the release by doing:
52
+
53
+
```shell
54
+
$ git checkout -b main origin/main
55
+
$ git tag vX.Y.Z # where X.Y.Z represent the version to be released
56
+
$ git push origin vX.Y.Z
57
+
```
58
+
59
+
A new job "Create Release" will be triggered and the following will be done:
50
60
* Atlas Operator image is built and pushed to DockerHub
51
61
* Draft Release will be created with all commits since the previous release
52
-
53
-
The "Create Release Branch" workflow is going to create a Pull Request pointing to a `release/X.Y.Z` branch. Once approved and merged, automation is going to create a `vX.Y.Z` tag.
62
+
* A subsequent job will be triggered to create a SBOMs update PR
0 commit comments