testing create-release-notes

This commit is contained in:
2025-05-26 17:17:34 +02:00
parent 0ae5543fd2
commit a222e49a1d

View File

@@ -74,6 +74,12 @@ jobs:
cat << "EOF"
${{ steps.changelog.outputs.changelog }}
EOF
echo ${{ steps.changelog.outputs.changelog }}
- name: Create release notes
uses: johnyherangi/create-release-notes@main
id: create-release-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
id: create_release
@@ -82,7 +88,7 @@ jobs:
with:
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
body: ${{ steps.changelog.outputs.changelog }}
body: ${{ steps.create-release-notes.outputs.release-notes }}
draft: false
prerelease: false
make_latest: true