mirror of
https://github.com/beetbox/beets.git
synced 2026-02-25 00:32:50 +01:00
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:
parent
f5a02462b1
commit
a7f00eaf13
1 changed files with 3 additions and 0 deletions
3
.github/workflows/make_release.yaml
vendored
3
.github/workflows/make_release.yaml
vendored
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue