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
- Change defaultBranch constant from '3.0.62' to 'r3.0.62'
- Update README.md to reflect correct branch name throughout
- Fixes branch name mismatch in release workflow
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ The `make release` command implements a PR-based workflow:
69
69
70
70
3.**Version File Update**: If a new version was determined, the `VERSION` file is automatically updated with the new version number.
71
71
72
-
4.**Default Branch Update**: Fetches and updates the default branch (`3.0.62`) to ensure the release branch is created from the latest code.
72
+
4.**Default Branch Update**: Fetches and updates the default branch (`r3.0.62`) to ensure the release branch is created from the latest code.
73
73
74
74
5.**Release Branch Creation**: Creates a new branch named `release/v{VERSION}` (e.g., `release/v3.0.62007`) from the updated default branch.
75
75
@@ -86,7 +86,7 @@ The `make release` command implements a PR-based workflow:
86
86
- Signs the checksum file with GPG (configured in CI/CD)
87
87
- Creates a GitHub release
88
88
89
-
10.**Pull Request**: Create a pull request from the release branch (`release/v{VERSION}`) to the default branch (`3.0.62`).
89
+
10.**Pull Request**: Create a pull request from the release branch (`release/v{VERSION}`) to the default branch (`r3.0.62`).
90
90
91
91
11.**Merge**: After CI completes successfully, merge the PR to complete the release.
92
92
@@ -100,15 +100,15 @@ make release
100
100
101
101
The process will guide you through each step with clear prompts. You can cancel at any point if needed.
102
102
103
-
**Note**: The command automatically updates the default branch (`3.0.62`) before creating the release branch, so you can run it from any branch. The release branch will always be created from the latest version of the default branch.
103
+
**Note**: The command automatically updates the default branch (`r3.0.62`) before creating the release branch, so you can run it from any branch. The release branch will always be created from the latest version of the default branch.
104
104
105
105
### Example Release Session
106
106
107
107
```bash
108
108
$ make release
109
-
Updating default branch (3.0.62) before creating release branch...
109
+
Updating default branch (r3.0.62) before creating release branch...
110
110
Fetching latest changes from origin...
111
-
Checking out default branch 3.0.62...
111
+
Checking out default branch r3.0.62...
112
112
Default branch updated successfully.
113
113
Checking if tag v3.0.62006 already exists...
114
114
Tag v3.0.62006 already exists!
@@ -126,13 +126,13 @@ Release Summary:
126
126
Tag: v3.0.62007
127
127
Version: 3.0.62007
128
128
Release Branch: release/v3.0.62007
129
-
Target Branch: 3.0.62
129
+
Target Branch: r3.0.62
130
130
=========================================
131
131
132
132
Do you want to create release branch and tag v3.0.62007? (yes/no): yes
133
133
134
-
Creating release branch release/v3.0.62007 from updated default branch (3.0.62)...
135
-
Release branch created from updated 3.0.62.
134
+
Creating release branch release/v3.0.62007 from updated default branch (r3.0.62)...
135
+
Release branch created from updated r3.0.62.
136
136
137
137
Committing VERSION file change...
138
138
VERSION file change committed.
@@ -151,10 +151,10 @@ Next steps:
151
151
1. GitHub Actions will automatically build the release when the tag is pushed.
0 commit comments