Skip to content

Commit

Permalink
workflow: link to release workflow in release script [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Sep 26, 2024
1 parent 01f15be commit a77b959
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions scripts/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.`)
}
Expand Down

0 comments on commit a77b959

Please sign in to comment.