File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -306,12 +306,6 @@ async function main() {
306
306
if ( args . publish ) {
307
307
await buildPackages ( )
308
308
await publishPackages ( targetVersion )
309
- } else {
310
- console . log (
311
- pico . yellow (
312
- '\nPublish step skipped (will be done in GitHub actions on successful push)' ,
313
- ) ,
314
- )
315
309
}
316
310
317
311
// push to GitHub
@@ -322,6 +316,15 @@ async function main() {
322
316
await runIfNotDry ( 'git' , [ 'push' ] )
323
317
}
324
318
319
+ if ( ! args . publish ) {
320
+ console . log (
321
+ pico . yellow (
322
+ '\nRelease will be done via GitHub Actions.\n' +
323
+ 'Check status at https://github.com/vuejs/core/actions/workflows/release.yml' ,
324
+ ) ,
325
+ )
326
+ }
327
+
325
328
if ( isDryRun ) {
326
329
console . log ( `\nDry run finished - run git diff to see package changes.` )
327
330
}
You can’t perform that action at this time.
0 commit comments