From: Evan You Date: Thu, 26 Sep 2024 11:30:19 +0000 (+0800) Subject: workflow: link to release workflow in release script [ci skip] X-Git-Tag: v3.5.10~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a77b95992a2058581e4724db75a5ad23a64b26cc;p=thirdparty%2Fvuejs%2Fcore.git workflow: link to release workflow in release script [ci skip] --- diff --git a/scripts/release.js b/scripts/release.js index d56522a720..cd287dfc12 100644 --- a/scripts/release.js +++ b/scripts/release.js @@ -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.`) }