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() {
306306 if ( args . publish ) {
307307 await buildPackages ( )
308308 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- )
315309 }
316310
317311 // push to GitHub
@@ -322,6 +316,15 @@ async function main() {
322316 await runIfNotDry ( 'git' , [ 'push' ] )
323317 }
324318
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+
325328 if ( isDryRun ) {
326329 console . log ( `\nDry run finished - run git diff to see package changes.` )
327330 }
You can’t perform that action at this time.
0 commit comments