From 06697f25ed9667b17547c5da63be386ee2d55675 Mon Sep 17 00:00:00 2001 From: Nate Wright Date: Wed, 24 Jun 2020 11:33:26 +0100 Subject: [PATCH] Add message to clarify that the developer does not need to manually upload a release package --- src/release/createGithubRelease.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/release/createGithubRelease.js b/src/release/createGithubRelease.js index 05bcdd0..3501779 100644 --- a/src/release/createGithubRelease.js +++ b/src/release/createGithubRelease.js @@ -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 @@ -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 } ])