@@ -162,18 +162,25 @@ public static void main(String... args) throws Exception {
162
162
163
163
// 15. Create GitHub release
164
164
printStep (15 , "Create GitHub release from previously pushed tag to upstream, enable `discussions`" );
165
- print ("Add changelog this to the release description:" );
165
+ print ("Add this changelog to the release description:" );
166
166
executeInteractiveCommand ("bash" , "-c" , "./scripts/changelog.sh extract " + nextReleaseVersion );
167
167
print ("Press enter to continue" );
168
168
System .in .read ();
169
169
170
- // 16. Tag new release in https://github.com/jkubeio/jkube-website
171
- printStep (16 , "Tag new release in https://github.com/jkubeio/jkube-website (keep empty title/description)" );
170
+ // 16. Send email to mailing lists (internal AND public)
171
+ printStep (16 , "Send email to mailing lists (internal AND public)" );
172
+ print ("Add this changelog to the mail" );
173
+ executeInteractiveCommand ("bash" , "-c" , "./scripts/changelog.sh emailTemplate " + nextReleaseVersion );
172
174
print ("Press enter to continue" );
173
175
System .in .read ();
174
176
175
- // 17. Publish tweet in jkubeio profile
176
- printStep (17 , "Publish tweet in jkubeio profile" );
177
+ // 17. Tag new release in https://github.com/jkubeio/jkube-website
178
+ printStep (17 , "Tag new release in https://github.com/jkubeio/jkube-website (keep empty title/description)" );
179
+ print ("Press enter to continue" );
180
+ System .in .read ();
181
+
182
+ // 18. Publish tweet in jkubeio profile
183
+ printStep (18 , "Publish tweet in jkubeio profile" );
177
184
print ("🔥 @ECDTools #JKube new release 🚀" );
178
185
print ("📦 v" + nextReleaseVersion );
179
186
print ("✨ new feat" );
@@ -188,8 +195,8 @@ public static void main(String... args) throws Exception {
188
195
print ("Press enter to continue" );
189
196
System .in .read ();
190
197
191
- // 18 . Announce the release in Gitter
192
- printStep (18 , "Announce the release in Gitter" );
198
+ // 19 . Announce the release in Gitter
199
+ printStep (19 , "Announce the release in Gitter" );
193
200
print ("🔥 Eclipse JKube new release 🚀" );
194
201
print ("📦 v" + nextReleaseVersion );
195
202
print ("✨ new feat" );
@@ -204,13 +211,13 @@ public static void main(String... args) throws Exception {
204
211
print ("Press enter to continue" );
205
212
System .in .read ();
206
213
207
- // 19 . Publish release
208
- printStep (19 , "Publish release in https://projects.eclipse.org/projects/ecd.jkube" );
214
+ // 20 . Publish release
215
+ printStep (20 , "Publish release in https://projects.eclipse.org/projects/ecd.jkube" );
209
216
print ("Press enter to continue" );
210
217
System .in .read ();
211
218
212
- // 20 . Run the Gradle verification test
213
- printStep (20 ,
219
+ // 21 . Run the Gradle verification test
220
+ printStep (21 ,
214
221
"Run the Gradle verification test: https://github.com/jkubeio/jkube-integration-tests/actions/workflows/smoke-tests.yml" );
215
222
print ("Press enter to continue" );
216
223
System .in .read ();
0 commit comments