Skip to content

Commit

Permalink
test: use printf instead of echo
Browse files Browse the repository at this point in the history
  • Loading branch information
Otrebor671 committed Feb 21, 2025
1 parent eca5916 commit b09e3b8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
- name: Read CHANGELOG
id: changelog
run: |
echo "::set-output name=changelog_content::$(cat ./changelog/ChangeLog.md)"
changelog_content=$(cat ./changelog/ChangeLog.md)
printf "%s" "$changelog_content" >> $GITHUB_ENV
- name: Release Firmware
uses: ncipollo/release-action@v1
Expand All @@ -85,7 +86,7 @@ jobs:
allowUpdates: true
draft: true
body: |
${{ steps.changelog.outputs.changelog_content }}
${{ env.changelog_content }}
# Flashing release
## Minino
### Table for [ESP Tool](https://espressif.github.io/esptool-js/)
Expand Down

0 comments on commit b09e3b8

Please sign in to comment.