From 478948e15ea70a288fb22f205fba02f5eb2cf45a Mon Sep 17 00:00:00 2001 From: microstrain-sam <105877710+microstrain-sam@users.noreply.github.com> Date: Wed, 22 May 2024 14:21:31 -0400 Subject: [PATCH] Update release.sh to include a link to the changelog on the release page. --- scripts/release.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 3b24216dc..be872ad39 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -61,8 +61,10 @@ popd # Generate a release notes file documentation_link="https://lord-microstrain.github.io/mip_sdk_documentation/${release_name}" +changelog_link="https://github.com/LORD-MicroStrain/mip_sdk/blob/${release_name}/CHANGELOG.md" release_notes_file="${tmp_dir}/mip-sdk-release-notes-${release_name}.md" echo "## Useful Links" > ${release_notes_file} +echo "* [Changelog](${changelog_link})" >> ${release_notes_file} echo "* [Documentation](${documentation_link})" >> ${release_notes_file} # Deploy the artifacts to Github @@ -106,4 +108,4 @@ if ! git diff-index --quiet HEAD --; then else echo "No changes to commit to documentation" fi -popd \ No newline at end of file +popd