From 68ff1ccc41269b847756879efd507fe969332fb6 Mon Sep 17 00:00:00 2001 From: Andrea Valassi Date: Wed, 2 Oct 2024 17:22:33 +0200 Subject: [PATCH] [install] in archiver.yml, add a link to the changelog in the release notes --- .github/workflows/archiver.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/archiver.yml b/.github/workflows/archiver.yml index bd1a1412f5..403994b358 100644 --- a/.github/workflows/archiver.yml +++ b/.github/workflows/archiver.yml @@ -121,7 +121,7 @@ jobs: echo "VERSION TAG: ${tagname}" >> ${WORKDIR}/VERSION.txt echo "RUNNING TAG: ${tagname_latest}" >> ${WORKDIR}/VERSION.txt # Release notes for the version tag - echo "Version tag ${tagname}" > ${WORKDIR}/versiontag.txt + echo "Version tag ${tagname} ([changelog](https://github.com/${REPOSITORY}/blob/${tagname}/epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/CHANGELOG.md))." > ${WORKDIR}/versiontag.txt echo "" >> ${WORKDIR}/versiontag.txt echo "---" >> ${WORKDIR}/versiontag.txt if [ "${tagname_makelatest}" != "true" ]; then @@ -203,7 +203,7 @@ jobs: git tag -f ${tagname_latest} ${commit} -m "Running tag ${tagname_latest}" git push -f --tags # Release notes for the running tag - echo "Running tag ${tagname_latest}" > ${WORKDIR}/runningtag.txt + echo "Running tag ${tagname_latest} ([changelog](https://github.com/${REPOSITORY}/blob/${tagname_latest}/epochX/cudacpp/CODEGEN/PLUGIN/CUDACPP_SA_OUTPUT/CHANGELOG.md))." > ${WORKDIR}/runningtag.txt echo "This is equivalent to version tag ${tagname}" >> ${WORKDIR}/runningtag.txt echo "" >> ${WORKDIR}/runningtag.txt echo "---" >> ${WORKDIR}/runningtag.txt