Skip to content

Commit

Permalink
test: use EOF
Browse files Browse the repository at this point in the history
  • Loading branch information
Otrebor671 committed Feb 21, 2025
1 parent eef583a commit a934710
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,14 @@ jobs:
name: changelog-${{ env.TAG_NAME }}
path: ./changelog/

- name: Set ChangeLog body
id: set_changelog
run: |
BODY=$(cat ./changelog/ChangeLog.md)
echo "BODY<<EOF" >> $GITHUB_ENV
echo "$BODY" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Release Firmware
uses: ncipollo/release-action@v1
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -80,7 +88,7 @@ jobs:
allowUpdates: true
draft: true
body: |
$(cat ./changelog/ChangeLog.md)
${{ env.BODY }}
# Flashing release
## Minino
### Table for [ESP Tool](https://espressif.github.io/esptool-js/)
Expand Down

0 comments on commit a934710

Please sign in to comment.