Skip to content

Commit

Permalink
删除转义UrlEncode
Browse files Browse the repository at this point in the history
  • Loading branch information
elysias123 authored Dec 2, 2023
1 parent 058450e commit 628d646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
cd ${{ github.workspace }}/git_clone
text="$(git log ${{ github.event.before }}..${{ github.event.after }} --pretty=format:'%h %s')"
fi
echo "commit=$(echo $text | gawk '{gsub(/[_*[\]()~`>#+=\|{}.!-]/,"\\\\\\\\&")}1' | sed -e 's|"|\\"|g' -e 's|^[0-9a-z]\+|__&__|' | hexdump -v -e '/1 "%02X"' | sed 's/\(..\)/%\1/g')" >> $GITHUB_ENV
echo "commit=$(echo $text | gawk '{gsub(/[_*[\]()~`>#+=\|{}.!-]/,"\\\\\\\\&")}1' | sed -e 's|"|\\"|g' -e 's|^[0-9a-z]\+|__&__|' | sed 's/\(..\)/%\1/g')" >> $GITHUB_ENV
- name: Post to Canary Channel
Expand Down

0 comments on commit 628d646

Please sign in to comment.