From 55175688f791072df8128e9afad68679c7cf6aeb Mon Sep 17 00:00:00 2001 From: MexIT Date: Fri, 3 Jan 2025 19:09:13 +0100 Subject: [PATCH] minor: Release: add sha256sums and release title --- .github/workflows/build_iso.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_iso.yml b/.github/workflows/build_iso.yml index 806b238..bc19873 100644 --- a/.github/workflows/build_iso.yml +++ b/.github/workflows/build_iso.yml @@ -71,8 +71,11 @@ jobs: commits="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/compare/$(git tag --sort=-v:refname | sed -n 2p)...$(git tag --sort=-v:refname | sed -n 1p)" echo -e "
\n\n**Full Changelog**: $commits" >> changelog.txt + sha256sum *.iso > sha256sums.txt + gh release create ${{ github.ref_name }} \ + --title ${{ github.ref_name }} \ --verify-tag \ --latest \ --notes-file changelog.txt \ - *.iso + *.iso sha256sums.txt