From fc96e83d1c2d008e3b02460a7a3a4232a0c96561 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 21 Aug 2018 09:29:13 +0200 Subject: Fix release script --- scripts/release.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'scripts/release.sh') diff --git a/scripts/release.sh b/scripts/release.sh index 4b45c959d..ef6399b68 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -47,8 +47,7 @@ printf "Changelog will be:\\n%s\\n" "$changelog" read -p "Are you sure to release? " -n 1 -r echo -if [[ ! $REPLY =~ ^[Yy]$ ]] -then +if [[ ! $REPLY =~ ^[Yy]$ ]]; then exit 0 fi @@ -96,7 +95,12 @@ rm "./client/dist/embed-stats.json" ( git push origin --tag - github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version" --description "$changelog" "$github_prerelease_option" + if [ -z "$github_prerelease_option" ]; then + github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version" --description "$changelog" + else + github-release release --user chocobozzz --repo peertube --tag "$version" --name "$version" --description "$changelog" "$github_prerelease_option" + fi + github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$zip_name" --file "$zip_name" github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$zip_name.asc" --file "$zip_name.asc" github-release upload --user chocobozzz --repo peertube --tag "$version" --name "$tar_name" --file "$tar_name" -- cgit v1.2.3