We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01f15be commit a77b959Copy full SHA for a77b959
scripts/release.js
@@ -306,12 +306,6 @@ async function main() {
306
if (args.publish) {
307
await buildPackages()
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
}
316
317
// push to GitHub
@@ -322,6 +316,15 @@ async function main() {
322
await runIfNotDry('git', ['push'])
323
324
318
319
+ if (!args.publish) {
320
+ console.log(
321
+ pico.yellow(
+ '\nRelease will be done via GitHub Actions.\n' +
+ 'Check status at https://github.com/vuejs/core/actions/workflows/release.yml',
+ ),
325
+ )
326
+ }
327
+
328
if (isDryRun) {
329
console.log(`\nDry run finished - run git diff to see package changes.`)
330
0 commit comments