scripts: Add install command in changelog

This commit is contained in:
cloudhead 2024-08-20 17:39:04 +02:00
parent c0aecbac3a
commit 8922388caa
No known key found for this signature in database
1 changed files with 11 additions and 2 deletions

View File

@ -1,9 +1,18 @@
#!/bin/sh #!/bin/sh
set -e set -e
echo "# 👾 Radicle $(git describe)" tag=$(git describe)
version=$(echo $tag | sed 's/^v//')
echo "# 👾 Radicle $version"
echo 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
echo "## Notes" echo "## Notes"
echo echo