We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7234c01 commit fc98db7Copy full SHA for fc98db7
1 file changed
.github/workflows/release.yml
@@ -36,11 +36,10 @@ jobs:
36
Title: ${{ github.event.inputs.release_title }}
37
ReleaseType: ${{ github.event.inputs.release_type }}
38
run: |
39
- # Escape Special characters
40
- Title="${Title//\`/}"
41
- Title="${Title//\$/}"
42
- Title="${Title//\"/\\\"}"
43
- Title="${Title//\'/\\\'}"
+ # Escape special characters
+ Title=$(echo ${Title//[\"]\\\"})
+ Title=$(echo ${Title//[\']\\\'})
+ Title=$(echo ${Title//[\$]})
44
45
./utils/publish-release.sh "$ReleaseType" "$Title"
46
0 commit comments