From 2bc4e90f6f068aa679d89e454298c09328bed57a Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Thu, 28 May 2020 17:54:08 -0400 Subject: [PATCH] Don't inadvertently clip release notes Specify a much larger linecount for extracting tag annotation from git. Signed-off-by: Phil Estes --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cf0c34cb2..9313bd6f9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: run: | RELEASEVER=${{ github.ref }} echo "::set-output name=stringver::${RELEASEVER#refs/tags/v}" - git tag -l ${RELEASEVER#refs/tags/} -n1000 | tail -n +3 | cut -c 5- >release-notes.md + git tag -l ${RELEASEVER#refs/tags/} -n20000 | tail -n +3 | cut -c 5- >release-notes.md working-directory: src/github.com/containerd/containerd - name: Save release notes