Skip to content

Commit

Permalink
Update release script copy
Browse files Browse the repository at this point in the history
  • Loading branch information
ockham committed Jan 11, 2021
1 parent 477874d commit 6bb426b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions bin/plugin/commands/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,8 @@ async function releaseRC() {
log(
formats.title( '\n💃 Time to release ' + config.name + ' 🕺\n\n' ),
'Welcome! This tool is going to help you release a new RC version of the Plugin.\n',
'It goes through different steps: creating the release branch, bumping the plugin version, tagging and creating the GitHub release, building the ZIP...\n',
'It goes through different steps: creating the release branch, bumping the plugin version, tagging the release, and pushing the tag to GitHub.\n',
'Once the tag is pushed to GitHub, GitHub will build the plugin ZIP, attach it to a release, and publish it.\n',
"To perform a release you'll have to be a member of the " +
config.team +
' Team.\n'
Expand All @@ -495,12 +496,11 @@ async function releaseRC() {
' version ' +
formats.success( version ) +
' has been successfully tagged.\n',
"In a few minutes, you'll be able to find the GitHub release draft here: " +
"In a few minutes, you'll be able to find the GitHub release here: " +
formats.success(
`https://github.com/${ config.githubRepositoryOwner }/${ config.githubRepositoryName }/releases/`
`${ config.wpRepositoryReleasesURL }v${ version }`
) +
'\n',
"Don't forget to publish the release once the draft is available!\n",
'Thanks for performing the release!\n'
);
}
Expand All @@ -509,7 +509,8 @@ async function releaseStable() {
log(
formats.title( '\n💃 Time to release ' + config.name + ' 🕺\n\n' ),
'Welcome! This tool is going to help you release a new stable version of the Plugin.\n',
'It goes through different steps: bumping the plugin version, tagging and creating the GitHub release, building the ZIP, pushing the release to the SVN repository...\n',
'It goes through different steps: bumping the plugin version, tagging the release, and pushing the tag to GitHub.\n',
'Once the tag is pushed to GitHub, GitHub will build the plugin ZIP, attach it to a release, publish it, and push the release to the SVN repository.\n',
"To perform a release you'll have to be a member of the " +
config.team +
' Team.\n'
Expand All @@ -523,13 +524,12 @@ async function releaseStable() {
' ' +
formats.success( version ) +
' has been successfully tagged.\n',
"In a few minutes, you'll be able to find the GitHub release draft here: " +
"In a few minutes, you'll be able to find the GitHub release here: " +
formats.success(
`https://github.com/${ config.githubRepositoryOwner }/${ config.githubRepositoryName }/releases/`
`${ config.wpRepositoryReleasesURL }v${ version }`
) +
'\n',
"Don't forget to publish the release once the draft is available!\n",
"Once published, it'll be automatically uploaded to the WordPress repository.\n",
"Once published, it'll be automatically uploaded to the WordPress plugin repository.\n",
"Thanks for performing the release! and don't forget to publish the release post.\n"
);
}
Expand Down

0 comments on commit 6bb426b

Please sign in to comment.