ci: show recent changes in nightly release (#5553)

This commit is contained in:
nerix
2024-08-20 18:20:45 +02:00
committed by GitHub
parent 998920d244
commit 4d0ac15e55
3 changed files with 74 additions and 1 deletions
+12 -1
View File
@@ -389,6 +389,17 @@ jobs:
working-directory: release-artifacts
shell: bash
- name: Format changes
id: format-changes
run: |
delimiter=$(openssl rand -hex 32)
{
echo "changelog<<$delimiter"
python3 ./.CI/format-recent-changes.py
echo $delimiter
} >> "$GITHUB_OUTPUT"
shell: bash
- name: Create release
uses: ncipollo/release-action@v1.14.0
with:
@@ -396,7 +407,7 @@ jobs:
allowUpdates: true
artifactErrorsFailBuild: true
artifacts: "release-artifacts/*"
body: ${{ github.event.head_commit.message }}
body: ${{ steps.format-changes.outputs.changelog }}
prerelease: true
name: Nightly Release
tag: nightly-build