Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/release/createGithubRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
* - Prompts the user to confirm they want to create a release on Github
* - Opens the URL for Github release prepopulated with the release info
* - Waits for the user to confirm they have published the release
*
* @notes
*
* @notes
* - We can not automatically know when the user has published the release so we require manual confirmation
* - using open({wait: true}) could be used but it triggers when the browser is closed (not the tab),
* also it does not work on windows
Expand Down Expand Up @@ -65,7 +65,7 @@ async function checkReleaseCreated() {
{
type: 'confirm',
name: 'releaseCreated',
message: `Once you publish the release on Github, type 'Yes' to proceed with the following steps.`,
message: `Once you publish the release on Github, type 'Yes' to proceed with the following steps. (Do not upload a release package. This will be done for you after you publish the release.)`,
default: false
}
])
Expand Down