Fix missing changelog in the release notes

Seems like this is the missing bit:
https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#using-job-outputs-in-a-matrix-job
This commit is contained in:
Šarūnas Nejus 2024-11-26 15:59:41 +00:00
parent f5a02462b1
commit a7f00eaf13
No known key found for this signature in database
GPG key ID: DD28F6704DBE3435

View file

@ -40,6 +40,8 @@ jobs:
name: Get changelog and build the distribution package
runs-on: ubuntu-latest
needs: increment-version
outputs:
changelog: ${{ steps.generate_changelog.outputs.changelog }}
steps:
- uses: actions/checkout@v4
with:
@ -59,6 +61,7 @@ jobs:
run: sudo apt update && sudo apt install pandoc -y
- name: Obtain the changelog
id: generate_changelog
run: |
{
echo 'changelog<<EOF'