Merge pull request #4291 from estesp/fix-release-markdown-length

Don't inadvertently clip release notes
This commit is contained in:
Derek McGowan
2020-05-28 16:10:49 -07:00
committed by GitHub

View File

@@ -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