Fix changelog retrieval workflow step

This commit is contained in:
Šarūnas Nejus 2024-11-22 00:59:50 +00:00
parent 6a7efdf53d
commit ea6ddde351
No known key found for this signature in database
GPG key ID: DD28F6704DBE3435

View file

@ -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