workflow: link to release workflow in release script [ci skip]

This commit is contained in:
Evan You 2024-09-26 19:30:19 +08:00
parent 01f15beeb0
commit a77b95992a
No known key found for this signature in database
GPG Key ID: 00E9AB7A6704CE0A

View 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.`)
}