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 e89a45b commit c7518f1Copy full SHA for c7518f1
.github/actions/reportportal-summarize/get-rp-output.sh
@@ -5,7 +5,7 @@ URL=''
5
6
# support spaces on launch key
7
urlEncode() {
8
- echo $1 | curl -Gso /dev/null -w %{url_effective} --data-urlencode @- "" | sed -E 's/..(.*).../\1/'
+ echo $1 | python -c "import urllib.parse, sys; print(urllib.parse.quote(sys.stdin.read()))" | sed -E 's/(.*).../\1/' | tr -d '\n'
9
}
10
11
if [[ -n "$RP_LAUNCH_KEY" && -n "$RP_TOKEN" && -n "$RP_URL" && -n "$RP_PROJECT" ]]
version.txt
@@ -1 +1 @@
1
-v8.8.0
+v8.8.1
0 commit comments