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
commit be23b965e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ jobs:
run: | run: |
RELEASEVER=${{ github.ref }} RELEASEVER=${{ github.ref }}
echo "::set-output name=stringver::${RELEASEVER#refs/tags/v}" 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 working-directory: src/github.com/containerd/containerd
- name: Save release notes - name: Save release notes