Skip to content

Commit ea6ddde

Browse files
committed
Fix changelog retrieval workflow step
1 parent 6a7efdf commit ea6ddde

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/make_release.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ jobs:
5656
run: sudo apt update && sudo apt install pandoc -y
5757

5858
- name: Obtain the changelog
59-
run: echo "changelog=$(poe changelog)" >> $GITHUB_OUTPUT
59+
run: |
60+
{
61+
echo 'changelog<<EOF'
62+
poe changelog
63+
echo EOF
64+
} >> "$GITHUB_OUTPUT"
6065
6166
- name: Build a binary wheel and a source tarball
6267
run: poetry build

0 commit comments

Comments
 (0)