Skip to content

Commit 875eac2

Browse files
authored
Fix entry format for public changelog (#669)
Remove extra empty lines around changelog content. [skip changelog] [skip review]
1 parent 435ef5d commit 875eac2

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/create_release_from_tag.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,11 @@ jobs:
3939
# Use sed to remove everything after "-----BEGIN PGP SIGNATURE-----" if it's present
4040
# and also always remove the last line of the git show output
4141
git show --format=oneline --no-color --no-patch "${{ env.TAG_NAME }}" \
42-
| sed '1,2d' \
42+
| sed '1,3d' \
4343
| sed '$d' \
4444
| sed '/-----BEGIN PGP SIGNATURE-----/,$d' \
4545
> CHANGELOG_TEXT.txt
4646
47-
echo "" >> CHANGELOG_TEXT.txt
4847
echo "" >> CHANGELOG_TEXT.txt
4948
5049
export PACKAGE_PATH="${{ env.PACKAGE_PATH }}"

0 commit comments

Comments
 (0)