Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: chenyan <[email protected]>
  • Loading branch information
devchenyan committed Oct 29, 2023
1 parent a476c38 commit 5e912cd
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/check_checksums.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ jobs:
run: diff generated_checksums.txt release_note_checksums.txt

- id: comment_body
shell: bash
run: |
body=$(cat generated_checksums.txt)
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
echo "body=$body" >> $GITHUB_OUTPUT
{
body=$(cat generated_checksums.txt)
body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}"
body=$body
} >> $GITHUB_OUTPUT
- uses: peter-evans/commit-comment@v2
with:
Expand Down

1 comment on commit 5e912cd

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 6684545350

Please sign in to comment.