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: tool/RELEASE_INSTRUCTIONS.md
+18-6Lines changed: 18 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,13 +74,8 @@ Make sure:
74
74
git checkout main; git rebase-update
75
75
```
76
76
77
-
2. Your Flutter SDK in `devtools/tool/flutter-sdk` and the one on PATH are updated to the latest candidate release branch.
78
77
79
-
**The following is required until https://github.com/flutter/devtools/issues/7939 is fixed:**
80
-
- Update the `flutter-candidate.txt` to the latest Flutter candidate in g3 (see instructions in DevTools Release Rotation email).
81
-
This change should get committed with the DevTools release PR so that we know which version it was released with.
82
-
83
-
Now, update your Flutter SDK in `devtools/tool/flutter-sdk` and the one on PATH to the latest Flutter candidate:
78
+
2. Your Flutter SDK checkout is on the latest commit in specified in DevTools:
84
79
```shell
85
80
dt update-flutter-sdk --update-on-path
86
81
```
@@ -101,6 +96,23 @@ This command will automatically:
101
96
- create a new branch using the tip of master and check out locally
102
97
- create a PR for release changes
103
98
99
+
##### The following is required until https://github.com/flutter/devtools/issues/7939 is fixed:
100
+
- Update the `flutter-candidate.txt` to the [latest Flutter candidate SHA in g3](http://go/flutter-rolls) (see instructions in DevTools Release Rotation email).
101
+
- This change should get committed with the DevTools release PR so that we know which version it was released with.
102
+
103
+
> [!NOTE]
104
+
> If there are failures caused by the latest Flutter SHA, this step can be skipped.
105
+
106
+
```shell
107
+
git commit -am "Update to latest Flutter candidate"
108
+
git push upstream <release-branch>
109
+
```
110
+
111
+
Finally, update your Flutter to the commit you just spcified.
112
+
```shell
113
+
dt update-flutter-sdk --update-on-path
114
+
```
115
+
104
116
#### Verify the version changes for the Release PR
0 commit comments