We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d4c2bd commit 7b8311cCopy full SHA for 7b8311c
.github/workflows/main.yml
@@ -183,8 +183,9 @@ jobs:
183
set -e
184
git fetch --tags --force # see https://github.com/actions/checkout/issues/290
185
git for-each-ref "${GITHUB_REF}" --format='%(contents)' > release-notes.rst
186
- # Strip PGP signature from signed tags
187
- sed -i "/-----BEGIN PGP SIGNATURE-----/,/-----END PGP SIGNATURE-----\n/d" release-notes.rst
+ # Strip signature from signed tags
+ sed -i -e "/-----BEGIN PGP SIGNATURE-----/,/-----END PGP SIGNATURE-----\n/d" \
188
+ -e "/-----BEGIN SSH SIGNATURE-----/,/-----END SSH SIGNATURE-----\n/d" release-notes.rst
189
- name: Convert Release Notes to Markdown
190
run: |
191
pandoc --wrap=preserve -o release-notes.md release-notes.rst
0 commit comments