Skip to content

Commit

Permalink
Fix changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
prymitive committed Jul 4, 2024
1 parent d1b9f8d commit d50e781
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
run: |
mkdir .tmp
printf '${{ steps.changelog.outputs.markdown }}' > .tmp/changelog.txt
exec 3<<'HERE'
${{ steps.changelog.outputs.markdown }}
HERE
cat /dev/fd/3 | tee .tmp/changelog.txt
- name: Release binaries
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit d50e781

Please sign in to comment.