From 8922388caa8ad879bdc2b82267bb5122afb77a1e Mon Sep 17 00:00:00 2001 From: cloudhead Date: Tue, 20 Aug 2024 17:39:04 +0200 Subject: [PATCH] scripts: Add install command in changelog --- scripts/changelog | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/scripts/changelog b/scripts/changelog index 96d8d094..74f82eca 100755 --- a/scripts/changelog +++ b/scripts/changelog @@ -1,9 +1,18 @@ #!/bin/sh set -e -echo "# 👾 Radicle $(git describe)" +tag=$(git describe) +version=$(echo $tag | sed 's/^v//') + +echo "# 👾 Radicle $version" echo -echo "Radicle $(git describe) ($(git rev-parse --short HEAD)) is released." +echo "Radicle $version ($(git rev-parse --short HEAD)) is released." +echo +echo "## Installation" +echo +echo '```' +echo "curl -sSf https://radicle.xyz/install | sh -s -- --no-modify-path --version=$version" +echo '```' echo echo "## Notes" echo