From 099444f84d4c88c1ef7e11cd9ea7a3ef73c33c8e Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Mon, 22 Sep 2025 21:57:24 +0200 Subject: [PATCH] build: use commit hash in nightly release notes --- contrib/make_nightly_build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/make_nightly_build b/contrib/make_nightly_build index a8eb482..95e2540 100755 --- a/contrib/make_nightly_build +++ b/contrib/make_nightly_build @@ -103,11 +103,11 @@ cd .. { echo "$title" "$VERSION" - echo "$release_notes" - echo "changes:" + echo + echo "commits:" echo } >"$release_notes" -git log "${last_nightly_version}..HEAD" --pretty="format:%al %s" >>"$release_notes" +git log "${last_nightly_version}..HEAD" --pretty="format:%h %s" >>"$release_notes" cat "$release_notes" gh release create "$VERSION" --repo "$repo" --notes-file "$release_notes" $DESTDIR/*