Skip to content

Commit

Permalink
Fix changelog retrieval workflow step
Browse files Browse the repository at this point in the history
  • Loading branch information
snejus committed Nov 22, 2024
1 parent 6a7efdf commit ea6ddde
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/make_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ea6ddde

Please sign in to comment.