Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
It seems discord does not like parentheses in the build message... Crudely filtering them out
  • Loading branch information
collin80 authored Feb 7, 2022
1 parent c7b610e commit c1d8b26
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ jobs:
)
release_msg="${release_msg//$'\n'/'-'}"
release_msg="${release_msg//$'\r'/'-'}"
release_msg="${release_msg//$'('/'-'}"
release_msg="${release_msg//$')'/'-'}"
echo $release_msg
echo "::set-output name=msg::$release_msg"
Expand Down

0 comments on commit c1d8b26

Please sign in to comment.