mirror of
https://github.com/beetbox/beets.git
synced 2025-12-30 12:32:33 +01:00
Fix changelog retrieval workflow step
This commit is contained in:
parent
6a7efdf53d
commit
ea6ddde351
1 changed files with 6 additions and 1 deletions
7
.github/workflows/make_release.yaml
vendored
7
.github/workflows/make_release.yaml
vendored
|
|
@ -56,7 +56,12 @@ jobs:
|
|||
run: sudo apt update && sudo apt install pandoc -y
|
||||
|
||||
- name: Obtain the changelog
|
||||
run: echo "changelog=$(poe changelog)" >> $GITHUB_OUTPUT
|
||||
run: |
|
||||
{
|
||||
echo 'changelog<<EOF'
|
||||
poe changelog
|
||||
echo EOF
|
||||
} >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Build a binary wheel and a source tarball
|
||||
run: poetry build
|
||||
|
|
|
|||
Loading…
Reference in a new issue