diff options
| -rwxr-xr-x | desktop/scripts/release/4-make-release | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/desktop/scripts/release/4-make-release b/desktop/scripts/release/4-make-release index 9355fdb0e4..aa713966ff 100755 --- a/desktop/scripts/release/4-make-release +++ b/desktop/scripts/release/4-make-release @@ -148,10 +148,14 @@ function publish_release { body+="\n$changelog" + echo "" echo ">>> Creating GitHub release" # shellcheck disable=SC2059 # shellcheck disable=SC2046 printf "$body" | gh release create "${release_flags[@]}" "$PRODUCT_VERSION" $(printf "%s " "$ARTIFACT_DIR"/*) + + echo "" + echo "The above URL contains the text \"untagged\", but don't worry it is tagged properly and everything will look correct once it's published." } download_and_verify |
