From 0fa59ff94bc405ea992e07ee5fda801caabb977b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 20 Mar 2024 10:32:11 +0100 Subject: [PATCH] release: Skip --generate-notes for this release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This release is a special case, as we've slacked for 6 months and the release content is way too long ... long enough to exceed the allowed limit for the release notes. With this in mind we'll just remove the `--generate-notes` for now, and then revert this commit as soon as the release is out, as releases should be happening every month and, ideally, we won't reach this situation never ever again. Fixes: #9064 - part V Signed-off-by: Fabiano FidĂȘncio --- tools/packaging/release/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/release/release.sh b/tools/packaging/release/release.sh index 42b70534bc..f7d3218c2d 100755 --- a/tools/packaging/release/release.sh +++ b/tools/packaging/release/release.sh @@ -114,7 +114,7 @@ function _create_new_release() _create_our_own_notes gh release create ${RELEASE_VERSION} \ - --generate-notes --title "Kata Containers ${RELEASE_VERSION}" \ + --title "Kata Containers ${RELEASE_VERSION}" \ --notes-file "/tmp/our_notes_${RELEASE_VERSION}" }