Skip to content

Commit d333489

Browse files
committed
Fix echo command to use -E flag for proper interpretation of escape sequences
1 parent f110624 commit d333489

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ jobs:
9595
echo "github.event.release.upload_url: ${{ github.event.release.upload_url }}"
9696
echo "github.event.release.url: ${{ github.event.release.url }}"
9797
echo "github.event.release.zipball_url: ${{ github.event.release.zipball_url }}"
98-
echo -e "github.event.release.name: ${{ github.event.release.name }}"
99-
echo -e "github.event.release.body: ${{ github.event.release.body }}"
98+
echo -E "github.event.release.name: ${{ github.event.release.name }}"
99+
echo -E "github.event.release.body: ${{ github.event.release.body }}"
100100
101101
- name: Check Git
102102
run: |

0 commit comments

Comments
 (0)