From c7518f107190c9f34491f28bbcddf2fdd3af5f07 Mon Sep 17 00:00:00 2001 From: Anahide Tchertchian <608958+atchertchian@users.noreply.github.com> Date: Wed, 8 Jan 2025 12:46:17 +0100 Subject: [PATCH] AAE-29961 Fix link to reportportal launch when using ubuntu 24 (#860) --- .github/actions/reportportal-summarize/get-rp-output.sh | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/reportportal-summarize/get-rp-output.sh b/.github/actions/reportportal-summarize/get-rp-output.sh index 962d5b2a5..fe5b99c46 100755 --- a/.github/actions/reportportal-summarize/get-rp-output.sh +++ b/.github/actions/reportportal-summarize/get-rp-output.sh @@ -5,7 +5,7 @@ URL='' # support spaces on launch key urlEncode() { - 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' } if [[ -n "$RP_LAUNCH_KEY" && -n "$RP_TOKEN" && -n "$RP_URL" && -n "$RP_PROJECT" ]] diff --git a/version.txt b/version.txt index dda618d92..c348e8d90 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v8.8.0 +v8.8.1