]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
workflow: link to release workflow in release script [ci skip]
authorEvan You <evan@vuejs.org>
Thu, 26 Sep 2024 11:30:19 +0000 (19:30 +0800)
committerEvan You <evan@vuejs.org>
Thu, 26 Sep 2024 11:30:19 +0000 (19:30 +0800)
scripts/release.js

index d56522a720e3936ec2f10cf8d27cce1905df2cad..cd287dfc12b15bb8e97a9f06c68ae2e8fafc7849 100644 (file)
@@ -306,12 +306,6 @@ async function main() {
   if (args.publish) {
     await buildPackages()
     await publishPackages(targetVersion)
-  } else {
-    console.log(
-      pico.yellow(
-        '\nPublish step skipped (will be done in GitHub actions on successful push)',
-      ),
-    )
   }
 
   // push to GitHub
@@ -322,6 +316,15 @@ async function main() {
     await runIfNotDry('git', ['push'])
   }
 
+  if (!args.publish) {
+    console.log(
+      pico.yellow(
+        '\nRelease will be done via GitHub Actions.\n' +
+          'Check status at https://github.com/vuejs/core/actions/workflows/release.yml',
+      ),
+    )
+  }
+
   if (isDryRun) {
     console.log(`\nDry run finished - run git diff to see package changes.`)
   }