Merge pull request #4291 from estesp/fix-release-markdown-length
Don't inadvertently clip release notes
This commit is contained in:
commit
be23b965e4
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user