From a671c086d707fc259f6e2fbbd1788eaf23dde008 Mon Sep 17 00:00:00 2001 From: amercader Date: Thu, 5 Dec 2024 16:22:14 +0100 Subject: [PATCH] Use table --- .github/workflows/publish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4721e13..a9c86a7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -56,15 +56,15 @@ jobs: run: | VERSIONS=$(cat "VERSIONS.json") - TABLE=$(echo "| Ubuntu Version | CKAN Ref |\n|---|---|\n" && echo $VERSIONS | jq -r ' - (.[] | ["| \(.ubuntu_version) | \(.ckan_ref) |\n"]) | + LIST=$(echo $VERSIONS | jq -r ' + (.[] | ["* \(.ckan_ref) on Ubuntu \(.ubuntu_version)"]) | .[] - ') + ') - NOTES="This release includes deb packages for the following versions.\n + NOTES="This release includes deb packages for the following versions. Please check the relevant file in the Assets section below. - $TABLE + $LIST Packages are also available at https://packaging.ckan.org."