Skip to content

Commit a77b959

Browse files
committed
workflow: link to release workflow in release script [ci skip]
1 parent 01f15be commit a77b959

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

scripts/release.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -306,12 +306,6 @@ async function main() {
306306
if (args.publish) {
307307
await buildPackages()
308308
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-
)
315309
}
316310

317311
// push to GitHub
@@ -322,6 +316,15 @@ async function main() {
322316
await runIfNotDry('git', ['push'])
323317
}
324318

319+
if (!args.publish) {
320+
console.log(
321+
pico.yellow(
322+
'\nRelease will be done via GitHub Actions.\n' +
323+
'Check status at https://github.com/vuejs/core/actions/workflows/release.yml',
324+
),
325+
)
326+
}
327+
325328
if (isDryRun) {
326329
console.log(`\nDry run finished - run git diff to see package changes.`)
327330
}

0 commit comments

Comments
 (0)