From 25dac369f1b183a23a2b768a6b3f9f7035dceb83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20N=C3=BCtzi?= Date: Tue, 9 Jul 2024 13:51:50 +0200 Subject: [PATCH] fix: CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gabriel Nützi --- tools/release.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/release.sh b/tools/release.sh index da4d67d..c2a1e8c 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -32,6 +32,8 @@ function create_prepare_tag() { print_info "Tag contains:" git cat-file -p "$tag" || die "Could not show tag content." + + print_info "Successfully created prepate tag '$tag'." } function commit_version_file() { @@ -59,6 +61,8 @@ function trigger_build() { print_info "Pushing tag '$tag'." git push -f origin --no-follow-tags "$branch" "$tag" + + print_info "Successfully triggered build." } function check_new_version() {