From 61ab6ebb68514b4fb8799843b5c7791367695b32 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Sun, 20 Nov 2022 00:42:22 +0100 Subject: [PATCH] build: add title to github's release --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index 5359010..e2f2a60 100755 --- a/release.sh +++ b/release.sh @@ -23,7 +23,7 @@ if [[ $( gh release view --repo "${ASSETS_REPOSITORY}" "${RELEASE_VERSION}" 2>&1 CREATE_OPTIONS="--generate-notes" fi - gh release create "${RELEASE_VERSION}" --repo "${ASSETS_REPOSITORY}" --notes "${NOTES}" ${CREATE_OPTIONS} + gh release create "${RELEASE_VERSION}" --repo "${ASSETS_REPOSITORY}" --title "${RELEASE_VERSION}" --notes "${NOTES}" ${CREATE_OPTIONS} fi cd assets