Skip to content

Commit

Permalink
fix: escape backticks in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Curstantine committed Jan 30, 2024
1 parent 0c2f286 commit 6099ea6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
- name: Checksum values for binary and sources
run: |
echo "## Checksum" >> BODY.md
echo "SHA256 for `sources.tar.zst`: `$(sha256sum sources.tar.zst | awk '{ print $1 }')`\n" > BODY.md
echo "SHA256 for `osu-helper-script`: `$(sha256sum sources/osu-helper-script | awk '{ print $1 }')"` >> BODY.md
echo "SHA256 for \`sources.tar.zst\`: \`$(sha256sum sources.tar.zst | awk '{ print $1 }')\`\n" > BODY.md
echo "SHA256 for \`osu-helper-script\`: \`$(sha256sum sources/osu-helper-script | awk '{ print $1 }')"\` >> BODY.md
- name: Create release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 6099ea6

Please sign in to comment.